expand_model {MachineShop} | R Documentation |
Model Expansion Over Tuning Parameters
Description
Expand a model over all combinations of a grid of tuning parameters.
Usage
expand_model(object, ..., random = FALSE)
Arguments
object |
model function, function name, or object; or another object that can be coerced to a model. |
... |
named vectors or factors or a list of these containing the
parameter values over which to expand |
random |
number of points to be randomly sampled from the parameter grid
or |
Value
list
of expanded models.
See Also
Examples
## Requires prior installation of suggested package gbm to run
data(Boston, package = "MASS")
models <- expand_model(GBMModel, n.trees = c(50, 100),
interaction.depth = 1:2)
fit(medv ~ ., data = Boston, model = SelectedModel(models))
[Package MachineShop version 3.7.0 Index]