expand_params | R Documentation |
Create a grid of parameter values from all combinations of supplied inputs.
expand_params(..., random = FALSE)
... |
named data frames or vectors or a list of these containing the parameter values over which to create the grid. |
random |
number of points to be randomly sampled from the parameter grid
or |
A data frame containing one row for each combination of the supplied inputs.
TunedModel
## Requires prior installation of suggested package gbm to run
data(Boston, package = "MASS")
grid <- expand_params(
n.trees = c(50, 100),
interaction.depth = 1:2
)
fit(medv ~ ., data = Boston, model = TunedModel(GBMModel, grid = grid))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.