scratchwork/randomForest-master/R/grow.R

grow <- function(x, ...) UseMethod("grow")

grow.default <- function(x, ...)
  stop("grow has not been implemented for this class of object")

grow.randomForest <- function(x, how.many, ...) {
  y <- update(x, ntree=how.many)
  combine(x, y)
}
haedong31/rotation_forest documentation built on Nov. 4, 2019, 1:26 p.m.