subplots 命名坐标轴
时间: 2024-02-24 22:49:51 浏览: 48
python 设置xlabel,ylabel 坐标轴字体大小,字体类型
可以使用 `set_xlabel` 和 `set_ylabel` 方法来为子图命名坐标轴。例如:
```python
import matplotlib.pyplot as plt
fig, axs = plt.subplots(2, 2)
axs[0, 0].set_xlabel('X Label 1')
axs[0, 0].set_ylabel('Y Label 1')
axs[0, 1].set_xlabel('X Label 2')
axs[0, 1].set_ylabel('Y Label 2')
axs[1, 0].set_xlabel('X Label 3')
axs[1, 0].set_ylabel('Y Label 3')
axs[1, 1].set_xlabel('X Label 4')
axs[1, 1].set_ylabel('Y Label 4')
plt.show()
```
这样就可以为每个子图命名坐标轴了。
阅读全文