1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
\name{treesize}
\alias{treesize}
\title{Size of trees in an ensemble}
\description{
Size of trees (number of nodes) in and ensemble.
}
\usage{
treesize(x, terminal=TRUE)
}
\arguments{
\item{x}{an object of class \code{randomForest}, which contains a
\code{forest} component.}
\item{terminal}{count terminal nodes only (\code{TRUE}) or all nodes
(\code{FALSE}}
}
\value{
A vector containing number of nodes for the trees in the
\code{randomForest} object.
}
\note{
The \code{randomForest} object must contain the \code{forest}
component; i.e., created with \code{randomForest(...,
keep.forest=TRUE)}.
}
\seealso{\code{\link{randomForest}}}
\author{Andy Liaw \email{andy_liaw@merck.com}}
\examples{
data(iris)
iris.rf <- randomForest(Species ~ ., iris)
hist(treesize(iris.rf))
}
\keyword{regression}
\keyword{classif}
|