Question

In matlab, it's straightforward to get and set the position of an existing axes on the figure:

  pos = get(gca(), 'position')
  set(gca(), 'position', pos)

How do I do this in Matplotlib?

I need this for two related reasons:

These are the specific problems I'm trying to solve:

  • I have a column of subplots where some have colorbars and some don't, and they aren't the same width i.e. the X axises don't align. The colorbar steals space from the axes. This also happens in matlab, and there I'd use the above trick to make all the axes equally wide by copying the width from an axes with a colorbar to those without.

  • add space between individual subplots by shrinkin an axes. The adjust_subplots() function adjusts all subplots the same.

Was it helpful?

Solution

Setting axes position is similar in Matplotlib. You can use the get_position and set_position methods of the axes.

import matplotlib.pyplot as plt

ax = plt.subplot(111)
pos1 = ax.get_position() # get the original position 
pos2 = [pos1.x0 + 0.3, pos1.y0 + 0.3,  pos1.width / 2.0, pos1.height / 2.0] 
ax.set_position(pos2) # set a new position

You might also want to take a look at GridSpec if you haven't already.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top