上一章说到了创建多个子图的方法,那么这一章就来说一下另一种创建多个子图的方法,以及为每个子图添加x轴、y轴、标题和双坐标轴的设置。
一、创建多个子图
因为每画一个图都要创建一个子图,所示这个方法有点麻烦,代码如下:
# 第一个子图
ax1 = plt.subplot(221)
ax1.plot([1, 3, 5, 7], [2, 4, 6, 8], 'c--o', markerfacecolor='r', label='legend1')
# 第二个子图
ax2 = plt.subplot(222)
ax2.bar([1, 2, 3, 4], [3, 4, 5, 6], color='c')
# 第三个子图
ax3 = plt.subplot(223)
ax3.scatter([1, 4, 8,