plt.plot()里面label显示中文
时间: 2023-08-04 22:17:32 浏览: 158
matplotlib.pyplot.plot()参数使用详解
如果要在 `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()` 中添加 `label` 参数,并在图例中显示中文标签:
```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, label='曲线')
plt.xlabel('横轴标签')
plt.ylabel('纵轴标签')
plt.title('标题')
plt.legend() # 显示图例
plt.show()
```
这样就可以在 `plt.plot()` 中添加中文标签并在图例中显示了。
阅读全文