matplotlib多子图

matplotlib画图中一个轴占据多个子图 - 知乎

matplotlib多子图_第1张图片

import matplotlib.pyplot as plt
fig = plt.figure()
gs = fig.add_gridspec(2,4)
ax1 = fig.add_subplot(gs[0, 0:2])
ax2 = fig.add_subplot(gs[0, 2:])
axa = fig.add_subplot(gs[1, 1])
axb= fig.add_subplot(gs[1, 2])
axc = fig.add_subplot(gs[1, 3])
axd = fig.add_subplot(gs[1, 0])

plt.show()

matplotlib多子图_第2张图片

matplotlib多子图_第3张图片

你可能感兴趣的:(python,matplotlib)