我有一个数据帧,我想使用聚合函数来计算出现的次数。我定期使用聚合函数将数据求和如下:
df2 <- aggregate(x ~ Year+Month,data=df1,sum)
我想计算观察结果,但似乎找不到适当的FUN论证。直觉上,我认为会是如下:
df2 <- aggregate(x ~ Year+Month,count)
但是,没有这样的运气。
有任何想法吗?
还有df2 < - count(x,c('Year','Month'))(plyr包)
原文链接:https://www.f2er.com/javaschema/282860.html