简单轴分割器示例3

简单轴分割器示例3

  1. import mpl_toolkits.axes_grid1.axes_size as Size
  2. from mpl_toolkits.axes_grid1 import Divider
  3. import matplotlib.pyplot as plt
  4. fig1 = plt.figure(1, (5.5, 4))
  5. # the rect parameter will be ignore as we will set axes_locator
  6. rect = (0.1, 0.1, 0.8, 0.8)
  7. ax = [fig1.add_axes(rect, label="%d" % i) for i in range(4)]
  8. horiz = [Size.AxesX(ax[0]), Size.Fixed(.5), Size.AxesX(ax[1])]
  9. vert = [Size.AxesY(ax[0]), Size.Fixed(.5), Size.AxesY(ax[2])]
  10. # divide the axes rectangle into grid whose size is specified by horiz * vert
  11. divider = Divider(fig1, rect, horiz, vert, aspect=False)
  12. ax[0].set_axes_locator(divider.new_locator(nx=0, ny=0))
  13. ax[1].set_axes_locator(divider.new_locator(nx=2, ny=0))
  14. ax[2].set_axes_locator(divider.new_locator(nx=0, ny=2))
  15. ax[3].set_axes_locator(divider.new_locator(nx=2, ny=2))
  16. ax[0].set_xlim(0, 2)
  17. ax[1].set_xlim(0, 1)
  18. ax[0].set_ylim(0, 1)
  19. ax[2].set_ylim(0, 2)
  20. divider.set_aspect(1.)
  21. for ax1 in ax:
  22. ax1.tick_params(labelbottom=False, labelleft=False)
  23. plt.show()

下载这个示例