我正在使用recipes
来自tidymodels
. 我正在尝试同时update_role
为几列。例子:
library(recipes)
library(dplyr)
cols_to_update = list()
cols_to_update[["a"]] <- c("mpg", "cyl")
mtcars %>%
recipe() %>%
update_role(cols_to_update[["a"]], new_role = "new_role")
我收到错误Error: Not all functions are allowed in step function selectors (e.g.
c ). See ?selections.
Here's documentation for selections。
我无法手动输入所有这些。