Re: [Matplotlib-users] Controlling spacing between subplots

2011-09-20 Thread Brad Malone
Hi Ben, Thanks. Using label_outer() does, as you say, only show labels on the edge and that is something I wanted to do. It doesn't, however, make a common y-axis label and a common x-axis label (instead there are now 2 of each, instead of 4). It appears that I might be able to add a common y and

Re: [Matplotlib-users] Controlling spacing between subplots

2011-09-20 Thread Benjamin Root
On Tue, Sep 20, 2011 at 11:06 AM, Brad Malone wrote: > Hi Jeffrey, > > Thanks the response. Sorry about the term "global axis". That was clearly > not the best way to say it. What I meant to say is global x axis LABEL and > y-axis LABEL. This can be seen in this example ( > http://www.scipy.org/C

Re: [Matplotlib-users] Controlling spacing between subplots

2011-09-20 Thread Brad Malone
Hi Jeffrey, Thanks the response. Sorry about the term "global axis". That was clearly not the best way to say it. What I meant to say is global x axis LABEL and y-axis LABEL. This can be seen in this example ( http://www.scipy.org/Cookbook/Matplotlib/Multiple_Subplots_with_One_Axis_Label?action=At

Re: [Matplotlib-users] Controlling spacing between subplots

2011-09-20 Thread Jeffrey Spencer
Not sure what you mean global axis but I think I was trying to do something similar with this. This is the chunk of one subplot. Specifically look at last three lines: ax = fig.add_subplot(2,2,2) ax.set_title('b) 5') ax.set_ylim((0,yUpper)) for i in tempRun: ax.plot(x,actSum[1,semi,i,semi],

Re: [Matplotlib-users] Controlling spacing between subplots

2011-09-19 Thread Brad Malone
Hello again, I've actually made some more progress on my last question after finding this site: http://www.scipy.org/Cookbook/Matplotlib/Multiple_Subplots_with_One_Axis_Label and I was able to adjust the widths of my spacing. My current plot looks like this: http://imageshack.us/photo/my-images/

[Matplotlib-users] Controlling spacing between subplots

2011-09-19 Thread Brad Malone
Hi, I am trying to do a simple 2x2 box of plots. My code is so far very simple, and simply looks something like this. ax=subplot(221) > > plot(x2cp,y2cp) > ax.set_title('2cP') > ylabel('Displacement') > ax=subplot(222) > plot(x2cb,y2cb) > ax.set_title('2cB') > ax=subplot(223) > plot(x6fp