plate
plate.Rd
Get the results from the recipe. If the recipe hasn't been prepped and baked, this will do those steps and return the result.
Examples
dat <- data.frame(x = rnorm(10), y = rnorm(10))
rec <- recipe(y~x, data = dat) |>
step_scale(x) |>
prep() |>
bake() |>
plate()
rec <- recipe(y~x, data = dat) |>
step_scale(x) |>
plate()