[Matplotlib-users] Question about subplots

2009-11-26 Thread chombee
I'm trying to make a figure with six subplots, here's what I've managed so far: http://dl.dropbox.com/u/136038/bar-00-protagonist.png That's actually done with two subplots (the top row and the bottom row) and what looks almost like 3 separate pairs of axes in each row is actually just one pair

Re: [Matplotlib-users] Question about subplots

2009-11-26 Thread Pauli Virtanen
Thu, 26 Nov 2009 15:13:57 +, chombee wrote: I'm trying to make a figure with six subplots, here's what I've managed so far: http://dl.dropbox.com/u/136038/bar-00-protagonist.png That's actually done with two subplots (the top row and the bottom row) and what looks almost like 3

Re: [Matplotlib-users] Question about subplots

2009-11-26 Thread chombee
You could perhaps use 6 subplots, and place the titles manually. Something like suptitle(r'Top title', y=0.95) suptitle(r'Bottom title', y=0.05) Thanks, that worked very well. I got the plot that I wanted and with much tidier source code: