python词云图 中文字体位置
时间: 2023-06-21 13:19:10 浏览: 101
如果您想在 Python 中生成中文词云图并设置字体,可以使用 `wordcloud` 库和 `matplotlib` 库。
首先,您需要安装这两个库。您可以使用以下命令安装它们:
```
pip install wordcloud matplotlib
```
接下来,您可以使用以下代码来生成中文词云图并设置中文字体的位置:
```python
from wordcloud import WordCloud
import matplotlib.pyplot as plt
import jieba
# 读取文本文件
with open("text.txt", "r", encoding="utf-8") as f:
text = f.read()
# 使用 jieba 分词
words = jieba.cut(text)
# 拼接分词结果为字符串
text = " ".join(words)
# 设置中文字体的位置
font_path = "path/to/font.ttf"
# 生成词云图
wordcloud = WordCloud(font_path=font_path, width=800, height=800, background_color="white").generate(text)
# 显示词云图
plt.imshow(wordcloud, interpolation="bilinear")
plt.axis("off")
plt.show()
```
在上面的代码中,`font_path` 参数指定了中文字体文件的路径。您需要将其替换为您自己的中文字体文件路径。同时,`width` 和 `height` 参数指定了词云图的大小,`background_color` 参数指定了词云图的背景颜色。
阅读全文