我正在尝试words_count
按两者对列进行分组essay_Set
,domain1_score
并添加计数器words_count
以添加计数器结果,如此处所述:
>>> c = Counter(a=3, b=1)
>>> d = Counter(a=1, b=2)
>>> c + d # add two counters together: c[x] + d[x]
Counter({'a': 4, 'b': 3})
我使用此命令将它们分组:
words_freq_by_set = words_freq_by_set.groupby(by=["essay_set", "domain1_score"])
但不知道如何通过 Counter 添加函数将其应用于words_count
简单的+
. 这是我的数据框: