python matplotlib 修改坐标轴的刻度和字体大小
时间: 2023-08-30 19:10:37 浏览: 475
键盘事件-python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围
1. 修改坐标轴刻度的大小:
可以使用 `tick_params` 方法来设置坐标轴刻度的大小,如下所示:
```python
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [4, 5, 6])
ax.tick_params(axis='both', which='major', labelsize=16)
```
上面的代码会将 x 和 y 坐标轴的主要刻度的字体大小设置为 16。
2. 修改坐标轴标签的大小:
可以使用 `set_xlabel` 和 `set_ylabel` 方法来设置 x 和 y 坐标轴标签的大小,如下所示:
```python
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [4, 5, 6])
ax.set_xlabel('X Label', fontsize=18)
ax.set_ylabel('Y Label', fontsize=18)
```
上面的代码会将 x 和 y 坐标轴的标签字体大小设置为 18。
注意:如果要同时设置 x 和 y 坐标轴的标签大小,可以使用 `set_xticklabels` 和 `set_yticklabels` 方法。
阅读全文