1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| from mpl_toolkits.axes_grid1 import Size, Divider import matplotlib.pyplot as plt
fig1 = plt.figure(1, (6, 6))
horiz = [Size.Fixed(1.), Size.Fixed(.5), Size.Fixed(1.5), Size.Fixed(.5)] vert = [Size.Fixed(1.5), Size.Fixed(.5), Size.Fixed(1.)]
rect = (0.1, 0.1, 0.8, 0.8)
divider = Divider(fig1, rect, horiz, vert, aspect=False)
ax1 = fig1.add_axes(rect, label="1") ax2 = fig1.add_axes(rect, label="2") ax3 = fig1.add_axes(rect, label="3") ax4 = fig1.add_axes(rect, label="4")
ax1.set_axes_locator(divider.new_locator(nx=0, ny=0)) ax2.set_axes_locator(divider.new_locator(nx=0, ny=2)) ax3.set_axes_locator(divider.new_locator(nx=2, ny=2)) ax4.set_axes_locator(divider.new_locator(nx=2, nx1=4, ny=0))
plt.show()
|