plt.plot label显示中文
时间: 2023-07-20 20:12:19 浏览: 172
matplotlib输出图象的中文显示问题
如果要在 `plt.plot` 中显示中文标签,可以按照以下步骤操作:
1. 安装中文字体库:
```python
!sudo apt-get install -y fonts-wqy-zenhei
```
2. 在代码中指定字体为中文字体:
```python
import matplotlib.pyplot as plt
# 指定中文字体
plt.rcParams['font.family'] = ['WenQuanYi Zen Hei']
```
3. 在 `plt.plot` 中添加中文标签:
```python
import matplotlib.pyplot as plt
# 指定中文字体
plt.rcParams['font.family'] = ['WenQuanYi Zen Hei']
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.xlabel('横轴标签')
plt.ylabel('纵轴标签')
plt.title('标题')
plt.show()
```
这样就可以在 `plt.plot` 中显示中文标签了。
阅读全文