Skip to content

Commit

Permalink
Update R docs for SpeeDRF.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnocandel committed Jan 10, 2015
1 parent 26d46a0 commit e79c958
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion R/h2o-package/man/h2o.SpeeDRF.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ H2O: Single-Node Random Forest
Performs single-node random forest classification on a data set.
}
\usage{
h2o.SpeeDRF(x, y, data, key = "", classification = TRUE, nfolds = 0, validation,
h2o.SpeeDRF(x, y, data, key = "", classification = TRUE, nfolds = 0, validation, holdout.fraction = 0,
mtries = -1, ntree = 50, depth = 20, sample.rate = 2/3, oobee = TRUE,
importance = FALSE, nbins = 1024, seed = -1, stat.type = "ENTROPY",
balance.classes = FALSE, verbose = FALSE)
Expand All @@ -34,6 +34,9 @@ An \code{\linkS4class{H2OParsedData}} object containing the variables in the mod
}
\item{validation}{
(Optional) An \code{\linkS4class{H2OParsedData}} object indicating the validation dataset used to construct confusion matrix. If left blank, this defaults to the training data when \code{nfolds = 0}.}

\item{holdout.fraction}{ (Optional) Fraction of the training data to hold out for validation.}

\item{mtries}{
(Optional) Number of features to randomly select at each split in the tree. If set to the default of -1, this will be set to \code{sqrt(ncol(data))}, rounded down to the nearest integer.
}
Expand Down

0 comments on commit e79c958

Please sign in to comment.