用python做text文件词云图的代码
时间: 2024-02-01 17:02:55 浏览: 96
Python制作词云图代码
你可以使用Python的第三方库WordCloud来生成文本文件的词云图,以下是一个简单的示例代码:
```python
import os
from os import path
from wordcloud import WordCloud
# 读取文本文件
text = open("your_file.txt").read()
# 设置词云图参数
wordcloud = WordCloud(width=800, height=800, margin=0).generate(text)
# 显示词云图
import matplotlib.pyplot as plt
plt.imshow(wordcloud, interpolation='bilinear')
plt.axis("off")
plt.show()
```
你也可以根据需要自定义其他参数,比如词云图颜色、字体、背景等。
阅读全文