bake | R Documentation |
Evaluate the steps and store the recipe results
bake(.rec, data = NULL)
.rec |
the R6 recipe object. |
data |
an optional data frame, list or environment (or object
coercible by |
type |
an updated recipe
rec <- recipe(y~x, data = list(x = rnorm(10), y = rnorm(10))) |>
step_scale(x) |>
prep() |>
bake()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.