Add additional trees to an existing ensemble of trees.
# S3 method for RRF
grow(x, how.many, ...)
an object of class RRF
, which contains a
forest
component.
number of trees to add to the RRF
object.
currently ignored.
An object of class RRF
, containing how.many
additional trees.
# NOT RUN { data(iris) iris.rf <- RRF(Species ~ ., iris, ntree=50, norm.votes=FALSE) iris.rf <- grow(iris.rf, 50) print(iris.rf) # }