利用wordcloud生成词云,字体微软雅黑
时间: 2023-06-17 22:06:24 浏览: 341
Consolas-with-Yahei-master.zip
好的,首先需要安装 wordcloud 和 matplotlib 库。可以使用以下命令进行安装:
```
pip install wordcloud matplotlib
```
接着,可以使用下面的代码生成词云:
```python
from wordcloud import WordCloud
import matplotlib.pyplot as plt
text = '这里是一段文本,可以是一篇文章或者一段话'
wordcloud = WordCloud(font_path='msyh.ttf', background_color='white').generate(text)
plt.imshow(wordcloud, interpolation='bilinear')
plt.axis('off')
plt.show()
```
其中,`font_path` 参数指定了字体文件的路径,可以使用微软雅黑字体文件的路径替换 `'msyh.ttf'`。`background_color` 参数指定了词云的背景色,这里设置为白色。
运行代码后,会弹出一个窗口展示生成的词云。
阅读全文