subplot坐标轴名称
时间: 2023-08-03 09:07:38 浏览: 94
好的,您需要了解如何为subplot子图添加坐标轴名称。可以使用Matplotlib中的set_xlabel()和set_ylabel()方法来为子图的x轴和y轴添加名称,例如:
```
import matplotlib.pyplot as plt
fig, axs = plt.subplots(2, 2)
axs[0, 0].plot([1, 2, 3], [2, 4, 3])
axs[0, 0].set_title('Subplot 1')
axs[0, 0].set_xlabel('X label')
axs[0, 0].set_ylabel('Y label')
axs[0, 1].plot([1, 2, 3], [2, 4, 3])
axs[0, 1].set_title('Subplot 2')
axs[0, 1].set_xlabel('X label')
axs[0, 1].set_ylabel('Y label')
axs[1, 0].plot([1, 2, 3], [2, 4, 3])
axs[1, 0].set_title('Subplot 3')
axs[1, 0].set_xlabel('X label')
axs[1, 0].set_ylabel('Y label')
axs[1, 1].plot([1, 2, 3], [2, 4, 3])
axs[1, 1].set_title('Subplot 4')
axs[1, 1].set_xlabel('X label')
axs[1, 1].set_ylabel('Y label')
plt.show()
```
这个例子中,我们创建了一个2x2的subplot网格,并使用set_xlabel()和set_ylabel()方法为每个子图的x轴和y轴添加了名称。请注意,我们使用axs数组来引用每个子图。
阅读全文