Tidymodels 配方包在变量列表中使用 step_normalize
Tidymodels Recipe Package Use step_normalize On List Of Variables
我只想使用食谱包 (tidymodels) 中的 step_normalize 对任意选择的变量进行标准化。不幸的是,我找不到似乎在 step_normalize 中工作的选择函数,它选择了一个变量列表:
library(tidymodels)
iris %>%
recipe(Species ~ .) %>%
step_normalize(vars_select(Sepal.Length, Petal.Length)) %>%
prep()
我收到此错误消息:
Error: Not all functions are allowed in step function selectors (e.g. `vars_select`). See ?selections.
step_normalize
不支持这个 select 辅助函数,这个有效:
iris %>%
recipe(Species ~ .) %>%
step_normalize(Sepal.Length, Petal.Length) %>%
prep()
有关支持的 select 或功能,请参阅 ?selections
。
我只想使用食谱包 (tidymodels) 中的 step_normalize 对任意选择的变量进行标准化。不幸的是,我找不到似乎在 step_normalize 中工作的选择函数,它选择了一个变量列表:
library(tidymodels)
iris %>%
recipe(Species ~ .) %>%
step_normalize(vars_select(Sepal.Length, Petal.Length)) %>%
prep()
我收到此错误消息:
Error: Not all functions are allowed in step function selectors (e.g. `vars_select`). See ?selections.
step_normalize
不支持这个 select 辅助函数,这个有效:
iris %>%
recipe(Species ~ .) %>%
step_normalize(Sepal.Length, Petal.Length) %>%
prep()
有关支持的 select 或功能,请参阅 ?selections
。