python词云图代码
时间: 2023-09-13 18:13:49 浏览: 92
python 词云图
以下是使用Python生成词云图的代码示例:
```python
from wordcloud import WordCloud
import matplotlib.pyplot as plt
# 读取文本内容
text = open('example.txt', encoding='utf-8').read()
# 生成词云图
wordcloud = WordCloud(background_color="white").generate(text)
# 显示词云图
plt.imshow(wordcloud, interpolation='bilinear')
plt.axis("off")
plt.show()
```
以上代码中,`example.txt` 是需要生成词云图的文本文件,可以根据实际情况进行修改。`WordCloud` 类用于生成词云图对象,`imshow` 函数用于显示词云图。可以根据需求修改词云图的背景颜色、字体样式、大小等属性。
阅读全文