在summarize()中使用group_by()的语法

时间:2016-11-08 05:14:00

标签: r syntax dplyr pipe summarize

如何在summarize()中使用group_by()函数,如下所示:

summarize(group_by(product),sum(Sales))

1 个答案:

答案 0 :(得分:1)

使用管道是最简单的方法,但是如果你需要找到当前嵌套表单的问题,你需要传递感兴趣的数据帧(让我们说它是 df ) to group_by。

而不是:

summarize(group_by(product),sum(Sales))

使用:

summarize(group_by(df,product),sum(Sales))

第一个是:

summarize(group_by(Species), mean(Petal.Length)) 

缺少虹膜。