美文网首页
Python 词云图 wordcloud(2018-11-03

Python 词云图 wordcloud(2018-11-03

作者: 画奴 | 来源:发表于2018-11-03 23:35 被阅读0次

from wordcloud import WordCloud

import matplotlib.pyplot as plt

text=open('AI2017.txt','r').read()

font=r'c:\Windows\Fonts\simfang.ttf'

wc=WordCloud(font_path=font,width=800,height=600).generate(text)

plt.imshow(wc)

plt.axis('off')

plt.show()

wc.to_file('AI.jpg')

相关文章

网友评论

      本文标题:Python 词云图 wordcloud(2018-11-03

      本文链接:https://www.haomeiwen.com/subject/ejwlxqtx.html