dplyr 0.7当量已弃用mutate_

时间:2017-07-27 19:55:02

标签: r dplyr rlang tidyeval

我无法在dplyr 0.7中找到替换将被弃用的 mutate _ 函数的方法。

mutate _ 函数在我的用例中很有用:我在数据库(字符串格式)中存储了许多指令(如果需要可以过滤)并将这些指令应用于一个或多个数据帧。

例如:

dplyr::tibble(test = "test@test") %>% 
  dplyr::mutate_(.dots = list("test2" = "substr(test, 1, 5)",
                              "test3" = "substr(test, 5, 5)"))

有没有办法用dplyr 0.7保存变量和指令作为字符?

2 个答案:

答案 0 :(得分:7)

为了扩展MrFlick的例子,让我们假设你有一些存储为字符串的指令,以及你想要分配给结果计算的相应名称:

ln <- list( "test2", "test3" )
lf <- list( "substr(test, 1, 5)", "substr(test, 5, 5)" )

将名称与其说明匹配并将所有内容转换为quosures:

ll <- setNames( lf, ln ) %>% lapply( rlang::parse_quosure )

根据aosmith的建议,现在可以使用特殊的!!!运算符将整个列表传递给mutate:

tibble( test = "test@test" ) %>% mutate( !!! ll )
# # A tibble: 1 x 3
#        test test2 test3
#       <chr> <chr> <chr>
# 1 test@test test@     @

答案 1 :(得分:5)

这是一个替代方案

a <- "test2"
b <- "test3"
dplyr::tibble(test = "test@test") %>% 
dplyr::mutate(a := !!rlang::parse_expr("substr(test, 1, 5)"),
  b := !!rlang::parse_expr("substr(test, 5, 5)"))
# # A tibble: 1 x 3
#        test     a     b
#       <chr> <chr> <chr>
# 1 test@test test@     @

我们使用:=运算符动态地为字符串命名参数,然后我们解析转换的表达式字符串并用!!

打开它