- 使用非标准评估收集的操作员

时间:2017-10-29 15:37:47

标签: r tidyverse nse

我想编写一个以quosure作为参数的函数,将-附加到quosure,并将其传递给gather,如下所示:

library(tidyverse)
my_gather <- function(d, not.columns) {
  dg <- tidyr::gather(d, key = k, value = v, .dots = -!!!not.columns)
  dg
}

de <- my_gather(mtcars, not.columns = quos(mpg, cyl, disp))

> Error in `-`(~mpg, ~cyl, ~disp) : operator needs one or two arguments

这显然是因为我需要用-附加quosure的每个元素,而不是用-附加整个quosure。但是在我的工作中,以quos(-mpg, -cyl, -disp)的形式创建这个结果并不容易 - 那么如何修改quos(mpg, cyl, disp)以添加-

我希望看到与gather(mtcars, key = k, value = v, -mpg, -cyl, -disp)相同的结果,前三行是

   mpg cyl disp  k   v
1 21.0   6  160 hp 110
2 21.0   6  160 hp 110
3 22.8   4  108 hp  93

有一个类似的问题here,但它没有答案,似乎没有处理quos()而不是quo()的问题。

2 个答案:

答案 0 :(得分:3)

我们可以做到

my_gather <- function(d, not.columns) {
  tidyr::gather(d, key = k, value = v, .dots =  -c(UQS(not.columns)))
  #or use !!! instead of UQS
  #tidyr::gather(d, key = k, value = v, .dots =  -c(!!!(not.columns)))

}
de <- my_gather(mtcars, not.columns = quos(mpg, cyl, disp))
head(de, 3)
#   mpg cyl disp  k   v
#1 21.0   6  160 hp 110
#2 21.0   6  160 hp 110
#3 22.8   4  108 hp  93

使用没有功能的输出进行检查

de1 <- gather(mtcars, key = k, value = v, -mpg, -cyl, -disp)
identical(de, de1)
#[1] TRUE

答案 1 :(得分:2)

我可以提供&#34;回答问题而不是问题&#34;答案类型。您实际上需要一种方法来指定收集的列,其中包含有关未使用列的信息。这是我的方式:

library(tidyverse)

negate_columns <- function(.tbl, not.columns) {
  not_columns <- colnames(select(.tbl, !!!not.columns))

  setdiff(colnames(.tbl), not_columns)
}

my_gather <- function(d, not.columns) {
  columns <- negate_columns(d, not.columns)

  tidyr::gather(d, key = k, value = v, !!!syms(columns))
}

这种方式可以按预期工作:

my_gather(mtcars, not.columns = quos(mpg, cyl, disp)) %>%
    head(3)
#>    mpg cyl disp  k   v
#> 1 21.0   6  160 hp 110
#> 2 21.0   6  160 hp 110
#> 3 22.8   4  108 hp  93