我知道这很简单,但是我想我不知道我要做什么。我有一个这样的数据框
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))