plt.plot坐标轴名字大小和字体
时间: 2023-10-13 13:10:46 浏览: 178
matplotlib库函数⼤全
可以通过以下代码设置 `plt.plot` 中的坐标轴名字大小和字体:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
# 绘制图形
plt.plot(x, y)
# 设置x坐标轴名字大小和字体
plt.xlabel('x-axis', fontsize=14, fontweight='bold')
# 设置y坐标轴名字大小和字体
plt.ylabel('y-axis', fontsize=14, fontweight='bold')
# 显示图形
plt.show()
```
其中,`fontsize` 参数用于设置字体大小,`fontweight` 参数用于设置字体粗细。
阅读全文