formula.recipe | R Documentation |
In case a model formula is required, the formula method can be used on a recipe to show what predictors and outcome(s) could be used.
## S3 method for class 'recipe'
formula(x, ...)
x |
A recipe object that has been prepared. |
... |
Note currently used. |
A formula.
formula(recipe(Species + Sepal.Length ~ ., data = iris) %>% prep())
iris_rec <- recipe(Species ~ ., data = iris) %>%
step_center(all_numeric()) %>%
prep()
formula(iris_rec)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.