set_engine_celery | R Documentation |
set_engine_celery()
is used to specify which package or system will be used
to fit the model, along with any arguments specific to that software.
set_engine_celery(object, engine, ...)
object |
A model specification. |
engine |
A character string for the software that should be used to fit the model. This is highly dependent on the type of model (e.g. K-means, etc.). |
... |
Any optional arguments associated with the chosen computational
engine. These are captured as quosures and can be |
An updated model specification.
Based on the currently loaded packages, the following lists the set of engines available to each model specification.
# First, set general arguments using the standardized names mod <- k_means(k = 10) %>% # now say how you want to fit the model and another other options set_engine_celery("stats", iter.max = 15) translate_celery(mod, engine = "stats")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.