python绘制词云图代码
时间: 2023-09-20 13:15:09 浏览: 126
python生成词云图
5星 · 资源好评率100%
下面是一个简单的Python代码示例,用于绘制词云图:
```python
import jieba
from wordcloud import WordCloud
# 读取文本文件
with open('text.txt', 'r', encoding='utf-8') as f:
text = f.read()
# 使用jieba分词
words = jieba.cut(text)
# 将分词结果转换为字符串
words_str = ' '.join(words)
# 创建WordCloud对象
wc = WordCloud(background_color='white', width=800, height=600)
# 生成词云图
wc.generate(words_str)
# 保存词云图
wc.to_file('wordcloud.png')
```
需要注意的是,以上代码需要安装jieba和wordcloud两个模块。你可以使用pip安装它们:
```bash
pip install jieba
pip install wordcloud
```
另外,如果你要绘制中文词云图,需要使用中文字体,否则会出现乱码。你可以将中文字体文件放在代码所在目录下,并在WordCloud对象中指定字体文件路径。例如:
```python
font_path = 'msyh.ttf'
wc = WordCloud(background_color='white', width=800, height=600, font_path=font_path)
```
阅读全文