如何在summarize()中使用group_by()函数,如下所示:
summarize(group_by(product),sum(Sales))
答案 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))
缺少虹膜。