set_args | R Documentation |
set_args()
can be used to modify the arguments of a model specification while
set_mode()
is used to change the model's mode.
set_args(object, ...)
set_mode(object, mode, ...)
## S3 method for class 'model_spec'
set_mode(object, mode, quantile_levels = NULL, ...)
object |
A model specification. |
... |
One or more named model arguments. |
mode |
A character string for the model type (e.g. "classification" or "regression") |
quantile_levels |
A vector of values between zero and one (only for the
|
set_args()
will replace existing values of the arguments.
An updated model object.
rand_forest()
rand_forest() %>%
set_args(mtry = 3, importance = TRUE) %>%
set_mode("regression")
linear_reg() %>%
set_mode("quantile regression", quantile_levels = c(0.2, 0.5, 0.8))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.