1

使用该step_regex函数为模型构建配方时,它会为原始列中的某些模式创建附加列。完成后有没有办法从配方中排除原始列?

例如在下面的示例中,产品包含原始description列和两个新创建的列step_regex。我想要一个与对象集成的解决方案recipe,以便我可以直接在caret::train.

library(recipe)
data(covers)

rec <- recipe(~ description, covers) %>%
  step_regex(description, pattern = "(rock|stony)", result = "rocks") %>%
  step_regex(description, pattern = "ratake families")

rec2 <- prep(rec, training = covers)

with_dummies <- bake(rec2, newdata = covers)
4

1 回答 1

1

刚刚找到解决方案。我想我可以更改我不想用作预测变量的列的角色。

rec <- rec %>% add_role(description, new_role = "dont_use")

于 2018-09-03T13:55:29.203 回答