答案 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)
谢谢。