Using matplotlib/pylab....

How do I plot 5 heatmaps as subplots which have the same number of columns but different row counts? In other words, I need each subplot's height to be scaled differently.

Perhaps an image better illustrates the problem...

alt text

I need the data points to all be square, AND the columns to be lined up, so the heights have to change according to how many rows each subplot has.

I've tried:

  1. The scaling options mentioned here. The above plot is with axis('tight').
  2. The y-axis scaling solutions mentioned here.

... but no luck so far.

link|improve this question

70% accept rate
feedback

2 Answers

up vote 2 down vote accepted

I haven't tried this for any of my own work, but perhaps the matplotlib AxesGrid toolkit might be what you are looking for.

link|improve this answer
A word of warning, at the moment AxesGrid is not in the stable release of matplotlib so you have to fetch from latest source. Did work though. – pufferfish Aug 20 '09 at 8:16
feedback

Don't use subplot but axes to create your subplots - the latter allows arbitrary positioning of the subplot.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.