The following 3 steps do not have tidy functions for them
tidy_funs <- grep("^tidy\\.", ls(getNamespace("recipes")), value = TRUE)
tidy_funs <- gsub("^.{5}", "", tidy_funs)
tidy_funs <- grep("^step_.*", tidy_funs, value = TRUE)
step_funs <- grep("^step_.*", ls(getNamespace("recipes")), value = TRUE)
step_funs <- unique(gsub("_new$", "", step_funs))
setdiff(step_funs, tidy_funs)
#> [1] "step_intercept" "step_lag" "step_type"
Created on 2021-06-16 by the reprex package (v2.0.0)
The following 3 steps do not have tidy functions for them
Created on 2021-06-16 by the reprex package (v2.0.0)