如何在nltkdispersion_plot()中更改图形大小?

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

python - NLTK离散度_图图形大小-LMLPHP

最佳答案

因为nltk使用matplotlib,所以可以对figsize进行简单的更改:

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

# your code here

关于python - NLTK离散度_图图形大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42848307/

10-09 19:41