Re: [Matplotlib-users] subplots with the OO interface (ax.rowNum, ax.colNum)

2007-03-20 Thread Ryan Krauss
Thanks John. That will work. Ryan On 3/20/07, John Hunter <[EMAIL PROTECTED]> wrote: > On 3/20/07, Ryan Krauss <[EMAIL PROTECTED]> wrote: > > I have a figure with 2 subplots (2 rows, 1 column) created using the > > OO interface like this: > > > > ax1=fig.add_subplot(2,1,1) > > ax2=fig.add_subplo

Re: [Matplotlib-users] subplots with the OO interface (ax.rowNum, ax.colNum)

2007-03-20 Thread John Hunter
On 3/20/07, Ryan Krauss <[EMAIL PROTECTED]> wrote: > I have a figure with 2 subplots (2 rows, 1 column) created using the > OO interface like this: > > ax1=fig.add_subplot(2,1,1) > ax2=fig.add_subplot(2,1,2) > > After I have created these axes and plotted things on them, I want to > be able to set

[Matplotlib-users] subplots with the OO interface (ax.rowNum, ax.colNum)

2007-03-20 Thread Ryan Krauss
I have a figure with 2 subplots (2 rows, 1 column) created using the OO interface like this: ax1=fig.add_subplot(2,1,1) ax2=fig.add_subplot(2,1,2) After I have created these axes and plotted things on them, I want to be able to set their x and y lims. The function that creates the plot returns f