GBMModel | R Documentation |
Fits generalized boosted regression models.
GBMModel(
distribution = character(),
n.trees = 100,
interaction.depth = 1,
n.minobsinnode = 10,
shrinkage = 0.1,
bag.fraction = 0.5
)
distribution |
optional character string specifying the name of the
distribution to use or list with a component |
n.trees |
total number of trees to fit. |
interaction.depth |
maximum depth of variable interactions. |
n.minobsinnode |
minimum number of observations in the trees terminal nodes. |
shrinkage |
shrinkage parameter applied to each tree in the expansion. |
bag.fraction |
fraction of the training set observations randomly selected to propose the next tree in the expansion. |
factor
, numeric
,
PoissonVariate
, Surv
n.trees
, interaction.depth
, shrinkage
*,
n.minobsinnode
*
* excluded from grids by default
Default argument values and further model details can be found in the source See Also link below.
MLModel
class object.
gbm
, fit
, resample
## Requires prior installation of suggested package gbm to run
fit(Species ~ ., data = iris, model = GBMModel)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.