This sounds great. Thanks!
So far I haven't figured out how to use it. I downloaded the matplotlib
SVN and installed it, but was not able to find "nsper_demo.py".
Phillip
Jeff Whitaker wrote:
> Phillip M. Feldman wrote:
>> Jeff Whitaker wrote:
>>> Phillip M. Feldman wrote:
Andrew Straw w
On Wed, Feb 17, 2010 at 10:17 PM, John Hunter wrote:
> I think the name "figsubplots" or "fig_subplots" is better because you
> are creating Subplot instances. Alternatively, you might want to
> consider simply "subplots" which returns just the list of subplots:
> the figure can always be accesse
On Wed, Feb 17, 2010 at 8:29 PM, Fernando Perez wrote:
> On Wed, Feb 17, 2010 at 7:27 PM, David Warde-Farley
> wrote:
>>
>> An effusive "yes, yes, good god yes!" from this mpl-devel lurker.
>
> Thanks, that's two good pluses.
>
> Any suggestions on name changes, or other fixes to make? Otherwis
On Wed, Feb 17, 2010 at 7:27 PM, David Warde-Farley wrote:
>
> An effusive "yes, yes, good god yes!" from this mpl-devel lurker.
Thanks, that's two good pluses.
Any suggestions on name changes, or other fixes to make? Otherwise,
once I find a free minute I'll put it in.
Should it go into pyplo
On 17-Feb-10, at 6:52 PM, Fernando Perez wrote:
> Howdy,
>
> in trying to teach a more structured use of mpl, I keep getting
> annoyed by the whole figure(), add_subplot(), grab axes dance. I've
> also seen students get confused by it. Does something along these
> lines sound useful to have in t
Fernando Perez wrote:
> in trying to teach a more structured use of mpl,
good for you!
I always felt that to efficiently use the OO interface, there needed to
be some more utility functions like this:
> In [37]: figaxes()
> Out[37]:
> (,
> [])
>
> In [38]: figaxes((2,1))
> Out[38]:
> (,
> [,
Howdy,
in trying to teach a more structured use of mpl, I keep getting
annoyed by the whole figure(), add_subplot(), grab axes dance. I've
also seen students get confused by it. Does something along these
lines sound useful to have in the core (see attached)?
In use, below. You'd normally capt