Python云图——WordCloud了解一下

时间:2022-01-17 21:50:27

字符可以作画(参考前文:使用记事本画出照片)

字符串一样也可以

Python云图——WordCloud了解一下

安装词云WordCloud.

 pip install wordcloud

编写要生成词云的内容字符串

Python云图——WordCloud了解一下

保存为txt格式就可以了

使用Python代码实现词云

 from wordcloud import WordCloud
import matplotlib.pyplot as plt if __name__ == '__main__':
f = open(u'data.txt','r').read()
word = WordCloud(background_color='white',width=1000,height=860,margin=2).generate(f)
plt.imshow(word)
plt.axis('off')
plt.show()
word.to_file('test.png')

效果图:

Python云图——WordCloud了解一下

当然这里只是简单的使用了WordCloud的词云功能

他的功能远远不止于此