python云图不要坐标轴刻度
时间: 2023-11-11 14:00:45 浏览: 209
Python利用matplotlib.pyplot绘图时如何设置坐标轴刻度
您可以使用 Python 的 matplotlib 库来绘制云图,并通过设置坐标轴刻度的可见性来实现不显示坐标轴刻度。具体实现方法如下:
```python
import matplotlib.pyplot as plt
from wordcloud import WordCloud
# 读取文本文件
with open('text.txt', 'r', encoding='utf-8') as f:
text = f.read()
# 生成词云图
wordcloud = WordCloud(background_color='white', width=800, height=600).generate(text)
# 不显示坐标轴刻度
plt.axis('off')
# 显示词云图
plt.imshow(wordcloud, interpolation='bilinear')
plt.show()
```
阅读全文