NLTK dispersion_plot数字大小

时间:2017-03-17 02:43:28

标签: python plot nltk

如何在nltk dispersion_plot()中更改数字大小?

以下是我在下面绘制的示例:

enter image description here

2 个答案:

答案 0 :(得分:3)

由于nltk使用matplotlib,因此可以对figsize进行简单的更改:

import matplotlib.pyplot as plt
plt.figure(figsize=(20, 8))  # the size you want

# your code here

答案 1 :(得分:0)

使用NLTK图书示例text3(《创世纪》)的增强答案,但情节标题不同,则需要对nltk方法调用(类成员函数)使用matplotlib OO格式语法,即{ {1}},而不是nltk.draw.dispersion.dispersion_plot(text, word_list, title="Title Text")

text3.dispersion_plot(word_list)

谢谢。