R/grow.R

Defines functions grow.RRF grow.default grow

Documented in grow grow.default grow.RRF

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

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

grow.RRF <- function(x, how.many, ...) {
  y <- update(x, ntree=how.many)
  combine(x, y)
}

Try the RRF package in your browser

Any scripts or data that you put into this service are public.

RRF documentation built on May 31, 2022, 1:05 a.m.