FreqDistのfd.items()を使用して単語の頻度を合計するにはどうすればよいですか?
>>> fd = FreqDist(text)
>>> most_freq_w = fd.keys()[:10] #gives me the most 10 frequent words in the text
>>> #here I should sum up numbers of each of these 10 freq words appear in the text
たとえば、の各単語most_freq_w
が10回出現する場合、結果は次のようになります。100
!!! テキスト内のすべての単語の数は必要ありません。最も頻繁に使用されるのは10語だけです。