Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

expand_model

Model Expansion Over Tuning Parameters


Description

Expand a model over all combinations of a grid of tuning parameters.

Usage

expand_model(x, ..., random = FALSE)

Arguments

x

model function, function name, or call.

...

named vectors or factors or a list of these containing the parameter values over which to expand x.

random

number of points to be randomly sampled from the parameter grid or FALSE if all points are to be returned.

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))

MachineShop

Machine Learning Models and Tools

v2.8.0
GPL-3
Authors
Brian J Smith [aut, cre]
Initial release
2021-04-16

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.