summary.arbor
Summarize an Arbor Object
Description
Returns a detailed listing of a fitted
arbor object.
Usage
summary.arbor(object, cp = 0, digits = getOption("digits"), file, ...)
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.
|
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
library("arbor")
data(car.test.frame, package = "Sdatasets")
z.auto <- arbor(Mileage ~ Weight, car.test.frame)
summary(z.auto)