2

我无法弄清楚为什么我的函数中的 bang-bang 运算符没有取消引用我的grp论点。任何帮助将非常感激!

library(dplyr)

test_func <- function(dat, grp){
  dat %>%
    group_by(!!grp) %>%
    summarise(N =  n())
}

test_func(dat = iris, grp = "Species")

它只是生成整个数据的摘要,而不是按物种分组: 输出

4

1 回答 1

3

如果我们传递一个字符串,则转换为symbol 并评估 ( !!)

test_func <- function(dat, grp){
 dat %>%
    group_by(!! rlang::ensym(grp)) %>%
    summarise(N =  n(), .groups = 'drop')
 }

-测试

test_func(dat = iris, grp = "Species")
# A tibble: 3 x 2
#  Species        N
#* <fct>      <int>
#1 setosa        50
#2 versicolor    50
#3 virginica     50

或者另一种选择是使用across

test_func <- function(dat, grp){
    dat %>%
       group_by(across(all_of(grp))) %>%
       summarise(N =  n(), .groups = 'drop')
 }
于 2021-03-16T17:54:40.667 回答