powered by
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.
RRF
forest
number of trees to add to the RRF object.
currently ignored.
An object of class RRF, containing how.many additional trees.
how.many
combine, RRF
combine
# NOT RUN { data(iris) iris.rf <- RRF(Species ~ ., iris, ntree=50, norm.votes=FALSE) iris.rf <- grow(iris.rf, 50) print(iris.rf) # }
Run the code above in your browser using DataLab