Summarize a Fitted Arbor Object

DESCRIPTION:

Returns a detailed listing of a fitted arbor object.

USAGE:

summary.arbor(object, cp=0, digits, file, ... )

REQUIRED ARGUMENTS:

object
fitted model object of class arbor. This is assumed to be the result of some function that produces an object with the same named components as that returned by the arbor function.

OPTIONAL ARGUMENTS:

cp
trim nodes with a complexity of less than cp from the listing.
file
write the output to a given file name. (Full listings of a tree are often quite long).
digits
The number of significant digits used.

DETAILS:

This function is a method for the generic function summary for class "arbor" . It can be invoked by calling summary for an object of the appropriate class, or directly by calling summary.arbor regardless of the class of the object.

SEE ALSO:

, , , , .

EXAMPLES:

z.auto <- arbor(Mileage ~ Weight, car.test.frame)
summary(z.auto)