Skip to content

Commit

Permalink
edits to R docs (RF)
Browse files Browse the repository at this point in the history
  • Loading branch information
dearirenelang committed Oct 7, 2013
1 parent 2972324 commit 798a529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/h2o-package/man/h2o.randomForest.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ h2o.randomForest(y, x, data, ntree = 50, depth = 2147483647, classwt = as.numeri
%- maybe also 'usage' for other objects documented here.
\arguments{
\item{y}{
The name or index of the response variable. If the data does not contain a header, this is the column index. (The response must be either an integer or a categorical variable).
The name or index of the response variable. If the data does not contain a header, this is the column index, designated by increasing numbers from left to right. (The response must be either an integer or a categorical variable).
}
\item{x}{
A vector containing the names or indices of the predictor variables to use in building the random forest model.
Expand All @@ -31,7 +31,7 @@ Number of trees to grow. (Must be a nonnegative integer).
(Optional) Priors of the classes. Need not add up to one. If missing, defaults to all weights set at 1.0.}
}
\details{
Currently, only classification regression trees are supported. Note that indexing begins at zero, so for example, to specify the first column as the response variable, set \code{y = 0}.
Currently, only classification trees are supported. Note that indexing begins at zero, so for example, to specify the first column as the response variable, set \code{y = 0}.
}
\value{
An object of class \code{\linkS4class{H2ORForestModel}} with slots key, data, and model, where the last is a list of the following components:
Expand Down

0 comments on commit 798a529

Please sign in to comment.