如何在python中将词云另存为.png?

时间:2018-09-23 09:48:56

标签: python

我试图基于字符串创建词云,然后将其导入报告文档中。我正在使用python-docx,matplotlib和词云。 这是我的

的简要摘要
from wordcloud import WordCloud
import matplotlib.pyplot as plt
from docx import Document
from docx.shared import Inches
document = Document()
document.add_heading("Auto Generated Report")

text = "kd sa gf sdf gd python auomation get set python dfs aslkdf asdfij fdifh fdosfj dsfoj "

cloud = WordCloud().generate(text)
plt.title('Summarization of responses on possible improvements of CS course.')
plt.savefig('N.png')

document.add_picture('N.png', width=Inches(5))

document.save("Report")

但是,报表没有显示词云,而是仅显示一个空白图表。

1 个答案:

答案 0 :(得分:1)

{@ {1}}是对@Andy答案的补充,它是如何将词云映像保存到本地磁盘中以便以后导入的。您可以找到很好的参考书here