使用FreqDist总结词频数,python

发布于 2024-10-03 04:03:30 字数 417 浏览 6 评论 0原文

如何使用 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 个最常见的

How to sum up the number of words frequency using fd.items() from FreqDist?

>>> 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

e.g. if each word in most_freq_w appear 10 times, the result should be 100

!!! I don't need that number of all words in the text, just the 10 most frequent

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

合约呢 2024-10-10 04:03:30

我不熟悉 nltk,但由于 FreqDist 派生自 dict,因此以下内容应该有效:

v = fd.values()
v.sort()
count = sum(v[-10:])

I'm not familiar with nltk, but since FreqDist derives from dict, then the following should work:

v = fd.values()
v.sort()
count = sum(v[-10:])
合约呢 2024-10-10 04:03:30

要查找某个单词在语料库(您的一段文本)中出现的次数:

raw="<your file>"
tokens = nltk.word_tokenize(raw)
fd = FreqDist(tokens)
print fd['<your word here>'] 

To find the number of times a word appears in the corpus(your piece of text):

raw="<your file>"
tokens = nltk.word_tokenize(raw)
fd = FreqDist(tokens)
print fd['<your word here>'] 
吻泪 2024-10-10 04:03:30

它有一个漂亮的打印功能

    fd.pprint() 

就可以做到这一点。

It has a pretty print feature

    fd.pprint() 

will do it.

小猫一只 2024-10-10 04:03:30

如果 FreqDist 是单词到频率的映射:

sum(map(fd.get, most_freq_w))

If FreqDist is a mapping of words to their frequencies:

sum(map(fd.get, most_freq_w))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文