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{combine}
\alias{combine}
\title{Combine Ensembles of Trees}
\description{
Combine two more more ensembles of trees into one.
}
\usage{
combine(...)
}
\arguments{
\item{...}{two or more objects of class \code{randomForest}, to be
combined into one.}
}
\value{
An object of class \code{randomForest}.
}
\note{
The \code{confusion}, \code{err.rate}, \code{mse} and \code{rsq}
components (as well as the corresponding components in the \code{test}
compnent, if exist) of the combined object will be \code{NULL}.
}
\seealso{\code{\link{randomForest}}, \code{\link{grow}}}
\author{Andy Liaw \email{andy_liaw@merck.com}}
\examples{
data(iris)
rf1 <- randomForest(Species ~ ., iris, ntree=50, norm.votes=FALSE)
rf2 <- randomForest(Species ~ ., iris, ntree=50, norm.votes=FALSE)
rf3 <- randomForest(Species ~ ., iris, ntree=50, norm.votes=FALSE)
rf.all <- combine(rf1, rf2, rf3)
print(rf.all)
}
\keyword{regression}
\keyword{classif}
|