gpt4 book ai didi

r - 在 R 函数中将列引用传递给 group_by

转载 作者:行者123 更新时间:2023-12-04 11:31:57 24 4
gpt4 key购买 nike

这个问题与类似的帖子有关。 Function writing passing column reference to group_by

但是,我想将多个输入传递给使用 group_by_() 和 summarise_(​​) 的函数。

这是我的功能:

foo <- function(data,column,x1,x2){
data %>%
group_by_(.dots = column) %>%
summarise_(.dots= c(~mean(x1), ~mean(x2)))
}

但是,当我运行的时候

foo(mtcars,"cyl", "disp", "hp")

我收到以下错误。

Error in UseMethod("as.lazy_dots") : 
no applicable method for 'as.lazy_dots' applied to an object of class "c('double', 'numeric')"
In addition: Warning message:
In mean.default(x1) : argument is not numeric or logical: returning NA

谁能告诉我哪里做错了?

最佳答案

好吧,看起来您只需要再次使用 summarise_each,它确实有一个标准的评估替代方案,summarise_each_。你可以把 foo 写成

foo <- function(data, column, x1, x2){
data %>%
group_by_(.dots = column) %>%
summarise_each_(funs(mean), c(x1,x2))
}

并调用它

foo(mtcars,"cyl", "disp", "hp")
# Source: local data frame [3 x 3]
#
# cyl disp hp
# (dbl) (dbl) (dbl)
# 1 4 105.1364 82.63636
# 2 6 183.3143 122.28571
# 3 8 353.1000 209.21429

关于r - 在 R 函数中将列引用传递给 group_by,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33291002/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com