在summarize()中使用group_by()的语法[关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在summarize()中使用group_by()的语法[关闭]相关的知识,希望对你有一定的参考价值。
如何在summarize()中使用group_by()函数,如下所示:
summarize(group_by(product),sum(Sales))
答案
使用管道是最简单的方法,但是如果你需要找到当前嵌套表单的问题,你需要将感兴趣的数据帧(假设它是df)传递给group_by。
代替:
summarize(group_by(product),sum(Sales))
使用:
summarize(group_by(df,product),sum(Sales))
第一个是这样的:
summarize(group_by(Species), mean(Petal.Length))
虹膜缺失的地方。
以上是关于在summarize()中使用group_by()的语法[关闭]的主要内容,如果未能解决你的问题,请参考以下文章
R语言dplyr包获取dataframe分组聚合汇总统计值实战(group_by() and summarize() ):均值中位数分位数IQRMADcountunique
使用 group_by 并行 wilcox.test 并总结