## S3 method for class 'default':
Rborist(x, y, nTree=500, withRepl = TRUE,
predProb = ifelse(!is.factor(y), 0.4, sqrt(ncol(x))/ncol(x)),
predWeight = rep(1.0, ncol(x)),
nSamp = ifelse(withRepl, nrow(x), round((1-exp(-1))*nrow(x))),
minNode = ifelse(!is.factor(y), 6, 2),
nLevel = 0,
minInfo = 0.01,
sampleWeight = NULL,
quantVec = NULL,
quantiles = !is.null(quantVec),
pvtBlock = 8,
pvtNoPredict = FALSE, ...)x and y should have the same number of rows.mtry option
of randomForest, which is a fixed number of predictors over
which to attempt to split at each node.nodesize parameter of
randomForest.0 is reserved to
stipulate no pre-set limit.quantVec is not specified but quantiles has been
specified, then quartiles are employed by default.Rborist. Contains a forest
object, for subsequent prediction, as well as measure of prediction
quality on the out-of-bag samples. For regression, a mean-square
error rate and R-squared values are reported in mse and
rsq, respectively. For categorical response, the misprediction
rate and confusion matrices are reported misprediction and
confusion, respectively. If quantile training has been requested, a quantile object, for
subsequent quantile regression.