【发布时间】:2021-02-22 23:22:25
【问题描述】:
我想有一个使用summarize的灵活函数,其中:
- 聚合函数由用户给出
- 聚合函数可能会使用更多参数来引用数据本身中的变量。
一个很好的例子是用户提供fun=weighted.mean() 并指定权重参数w。
目前,我正在尝试使用...。问题是我找不到让... 引用数据框中的变量的方法?下面的示例是使用across() 给出的,但如果我使用summarize_at() 代替,也会发生同样的情况
谢谢!!
library(tidyverse)
fo1 <- function(df, fun=mean, ...){
df %>%
group_by(Species) %>%
summarise(across(starts_with("sepal"), fun, ...))
}
fo1(iris)
#> `summarise()` ungrouping output (override with `.groups` argument)
#> # A tibble: 3 x 3
#> Species Sepal.Length Sepal.Width
#> <fct> <dbl> <dbl>
#> 1 setosa 5.01 3.43
#> 2 versicolor 5.94 2.77
#> 3 virginica 6.59 2.97
fo1(iris, fun=weighted.mean)
#> `summarise()` ungrouping output (override with `.groups` argument)
#> # A tibble: 3 x 3
#> Species Sepal.Length Sepal.Width
#> <fct> <dbl> <dbl>
#> 1 setosa 5.01 3.43
#> 2 versicolor 5.94 2.77
#> 3 virginica 6.59 2.97
fo1(iris, fun=weighted.mean, w=Petal.Length)
#> Error: Problem with `summarise()` input `..1`.
#> x object 'Petal.Length' not found
#> ℹ Input `..1` is `across(starts_with("sepal"), fun, ...)`.
#> ℹ The error occurred in group 1: Species = "setosa".
fo1(iris, fun=weighted.mean, w=.data$Petal.Length)
#> Error: Problem with `summarise()` input `..1`.
#> x 'x' and 'w' must have the same length
#> ℹ Input `..1` is `across(starts_with("sepal"), fun, ...)`.
#> ℹ The error occurred in group 1: Species = "setosa".
由reprex package (v0.3.0) 于 2020 年 11 月 10 日创建
【问题讨论】:
标签: r dplyr tidyverse rlang across