Я хочу создать функцию, которая добавляет шаги к рецепту, но я не могу понять, как использовать add_step
. Не помогает, что в документации нет примеров.
Вот что я пробовал:
suppressPackageStartupMessages(library(recipes))
rec1 <- recipe(data = mtcars, mpg ~ disp + hp)
rec1
#> Data Recipe
#>
#> Inputs:
#>
#> role #variables
#> outcome 1
#> predictor 2
rec2 <- add_step(rec = rec1, step_mutate(hp = 1))
#> Error in add_step(recipe, step_mutate_new(terms = terms, trained = trained, : argument "recipe" is missing, with no default
Создано в 2020-02-24 Представить пакет (v0.3.0)