python词云需要安装wordcloud库。
安装方法:
在cmd使用pip install wordcloud命令即可安装。
wordcloud库把词云当作一个WordCloud对象:wordcloud.WordCloud()代表一个文本对应的词云。
可以根据文本中词语出现的频率等参数绘制词云。
示例:from wordcloud import WordCloud
f = open(u'D:\\PythonStudio\\WORK\\Demo1\\test.txt','r').read()
wordcloud = WordCloud(background_color="black",width=1000, height=860, margin=2).generate(f)
#width,height,margin可以设置图片属性
# generate 可以对全部文本进行自动分词,但是他对中文支持不好,对中文的分词处理请看我的下一篇文章
#wordcloud =WordCloud(font_path = r'D:\Fonts\simkai.ttf').generate(f)
# 你可以通过font_path参数来设置字体集
#background_color参数为设置背景颜色,默认颜色为黑色
import matplotlib.pyplot as plt
plt.imshow(wordcloud)
plt.axis("off")
plt.show()
wordcloud.to_file('test.png')
更多Python知识请关注Python视频教程栏目。