在使用NLTK学习自然语言处理时,按照《Python自然语言处理》的代码进行频率分布统计,原代码如下:
<span style="font-size:14px;">fdist1 = FreqDist(text1)</span>但是使用时报错如下:
Traceback (most recent call last):
File "<pyshell#33>", line 1, in <module>
fdist1 = FreqDist(text1)
NameError: name 'FreqDist' is not defined
书上给的解决方案是输入
<span style="font-size:14px;">from nltk.book import *</span>
后来查到FreqDist在nltk.probability类下,于是干脆导入所有nltk包:
<span style="font-size:14px;">from nltk import *</span>问题就解决啦~~
>>> from nltk import * >>> fdist1 = FreqDist(text1) >>> fdist1 FreqDist({u',': 18713, u'the': 13721, u'.': 6862, u'of': 6536, u'and': 6024, u'a': 4569, u'to': 4542, u';': 4072, u'in': 3916, u'that': 2982, ...})