在R数据帧中对分组的出现进行计数

时间:2018-08-12 16:38:10

标签: r dataframe group-by

我知道这很简单,但是我想我不知道我要做什么。我有一个这样的数据框

      word sentiment
1  ability  positive
2  ability  positive
3  ability  positive
4  ability  positive
5 abundant       joy
6 abundant  positive

我正在尝试进行分组并获得计数,因此看起来像这样。

      word sentiment  Count
1  ability  positive  4
2 abundant       joy  1
3 abundant  positive  1

我想我真的很亲密,这就是我拥有的

feelings_summarized <- summarize(group_by(feelings_raw, word, sentiment), mycount=count(feelings_raw, word))

0 个答案:

没有答案