Matplotlib: twin axes and set_equal

1.5k Views Asked by At

I'm wondering if there is a more elegant way (by removing any for loop, or by using another way to plot the grid), to achieve this figure:

grid

nx, ny = 8, 6
fig = plt.figure()

ax = fig.add_subplot(111)
ax.set_xlabel('Pixel X-coordinate')
ax.set_ylabel('Pixel Y-coordinate')
for i in range(nx-1):
    ax.axvline(i+0.5, color='k')
for i in range(ny-1):
    ax.axhline(i+0.5, color='k')

ax_twiny = ax.twiny()
ax_twiny.set_xticks(np.arange(nx-1) + 0.5)
ax_twiny.set_xticklabels(np.linspace(-600, 600, nx-1))
ax_twiny.set_xlabel(u'World X-coordinate [µm]')

ax_twinx = ax.twinx()
ax_twinx.set_yticks(np.arange(ny-1) + 0.5)
ax_twinx.set_yticklabels(np.linspace(-400, 400, ny-1))
ax_twinx.set_ylabel(u'World Y-coordinate [µm]')

for a in (ax, ax_twiny, ax_twinx):
    a.set_xlim(-0.5, nx - 0.5)
    a.set_ylim(-0.5, ny - 0.5)
    a.set_aspect('equal')

I tried to set minor ticks to plot the grid using ax.[xy]axis.grid(True, which='minor'), but the grid disappears when I plot the twin axes (using matplotlib 1.1).

1

There are 1 best solutions below

0
On

Not sure that there is a more elegant way, but a map can remove the last loop:

def setStuff(ax):
    ax.set_xlim(-0.5, nx - 0.5)
    ax.set_ylim(-0.5, ny - 0.5)
    ax.set_aspect('equal')
map( setStuff, [ax, ax2, ax3] )