expand_model {MachineShop} | R Documentation |
Expand a model over all combinations of a grid of tuning parameters.
expand_model(x, ..., random = FALSE)
x |
model function, function name, or call. |
... |
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 |
list
of expanded models.
## 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))