第一步:导入库
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
第二部:创建画布结构
fig = plt.figure()
第三步:创建区域规划图结构
spec = gridspec.GridSpec(3,4, figure=fig)
第四步:根据区域规划图,创建与它对应坐标系
ax1 = plt.subplot(spec[0,0:4]) #切片操作,实现跨列或跨行
ax2 = plt.subplot(spec[1,0:2])
ax3 = plt.subplot(spec[1,2:4])
ax4 = plt.subplot(spec[2,0:1], projection='polar')
ax5 = plt.subplot(spec[2,1:4])
第五步:调整子图之间的距离
plt.tight_layout()
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
fig = plt.figure()
spec = gridspec.GridSpec(3,4, figure=fig)
ax1 = plt.subplot(spec[0,0:4])
ax2 = plt.subplot(spec[1,0:2])
ax3 = plt.subplot(spec[1,2:4])
ax4 = plt.subplot(spec[2,0:1], projection='polar')
ax5 = plt.subplot(spec[2,1:4])
plt.tight_layout()
plt.show()