使用NLTK导入的数据,我可以调用text1.dispersion_plot(...)
,但是我无法在单词/标记列表中使用dispersion_plot()
函数。
我开始使用纯文本:
tokens = nltk.word_tokenize(...)
返回列表类型。
NLTK书籍上下文中的 text1
类型为class 'nltk.text.Text'
。
如何在我自己的文字上使用dispersion_plot()
和其他功能?
答案 0 :(得分:5)
在使用我自己的语料库时,它应该加载为:
myText = nltk.Text(...)
然后我可以使用其他基于类的函数,例如.concordance()
等。