plt.plot坐标轴名字大小和字体设置微软雅黑
时间: 2023-10-13 08:05:48 浏览: 103
Python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围
3星 · 编辑精心推荐
可以使用`font`参数来设置字体和大小,例如:
```python
import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'Microsoft YaHei' # 设置字体为微软雅黑
plt.rcParams['font.size'] = 12 # 设置字体大小为12
x = [1, 2, 3, 4, 5]
y = [2, 4, 3, 5, 1]
plt.plot(x, y)
plt.xlabel('X轴', fontweight='bold') # 设置X轴标签,并加粗字体
plt.ylabel('Y轴', fontweight='bold') # 设置Y轴标签,并加粗字体
plt.show()
```
输出结果:
![image.png](attachment:image.png)
`fontweight`参数可以设置字体加粗,其可选值为`normal`、`bold`、`heavy`、`light`、`ultrabold`和`ultralight`。
阅读全文