python词云图 Python简单实现词云图代码及步骤解析
百里希文 人气:0一、安装 wordcloud
pip install wordcloud
二、加载包、设置路径
import os from wordcloud import WordCloud import matplotlib.pyplot as plt os.chdir('E:\\pyspace\\tmp')
三、词云图示例
1、默认参数示例
text = 'Keep it simple and stupid.' wc = WordCloud() # 实例化词云图对象 wc.generate(text) # 根据文本生成词云图 plt.imshow(wc) # 显示词云图
如果 jupyter 没有图形输出,需要设置 jupyter 的图形显示方式
%matplotlib inline
WordCloud() 词云图对象对应的画布默认长200像素,宽400像素,背景色为黑色。
2、配置参数示例
text = 'Keep it simple and stupid.' wc = WordCloud(background_color='white', width=500, height=300) # 实例化词云图对象 wc.generate(text) # 根据文本生成词云图 plt.imshow(wc) # 显示词云图
3、不显示坐标轴
text = 'Keep it simple and stupid.' wc = WordCloud(background_color='white', width=500, height=300) # 实例化词云图对象 wc.generate(text) # 根据文本生成词云图 plt.imshow(wc) # 显示词云图 plt.axis('off') # 不显示坐标轴 plt.show()
环境说明:
加载全部内容