Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-19 Thread Jae-Joon Lee
The functionality of the gridspec is now merged into the matplotlib. The updated documentation can be found in http://matplotlib.sourceforge.net/trunk-docs/users/gridspec.html Regards, -JJ On Tue, May 11, 2010 at 11:57 AM, Jae-Joon Lee wrote: > Hi, > >  gridspec is a module that implements ma

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-12 Thread Jae-Joon Lee
On Wed, May 12, 2010 at 5:58 AM, Yannick Copin wrote: > gs = gridspec.GridSpec(3, 3) > ax1 = gs[0, :] > I'm inclined to leave the GridSpec as it is and I prefer to have a separate class for this (if we go for it). My inclination is to modify subplot2grid to return such an instance. e.g., grid =

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-12 Thread Jae-Joon Lee
On Tue, May 11, 2010 at 1:38 PM, John Hunter wrote: > This looks sufficiently general and useful that we may simply want it > to live in the main tree (not as a toolkit) and have subplot2grd > helper functionality available directly from pyplot. > Okay. I'll merge this into the main tree and comm

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-12 Thread Yannick Copin
Hi, Jae-Joon Lee writes: > gridspec is a module that implements matplotlib’s Subplot slightly > differently. Current matplotlib’s Subplot only allows a Subplot to > occupy a single cell of the n x m grid. gridspec enables a Subplot to > occupy multiple cells. Very interesting indeed. If I may

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-11 Thread PHobson
> -Original Message- > From: Jae-Joon Lee [mailto:lee.j.j...@gmail.com] > Sent: Tuesday, May 11, 2010 8:58 AM > To: Matplotlib Users > Subject: [Matplotlib-users] introducing mpl_toolkits.gridspec > > Hi, > > gridspec is a module that implements ma

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-11 Thread John Hunter
On Tue, May 11, 2010 at 11:39 AM, Jae-Joon Lee wrote: >> 2) Do you plan on checking this into mpl trunk (still as a mpl_toolkit >> module)? This looks sufficiently general and useful that we may simply want it to live in the main tree (not as a toolkit) and have subplot2grd helper functionality

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-11 Thread Fabrice Silva
Le mardi 11 mai 2010 à 12:39 -0400, Jae-Joon Lee a écrit : > > 2) Do you plan on checking this into mpl trunk (still as a > mpl_toolkit module)? > Not at this moment. But, will consider if there is enough interest. +1 -

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-11 Thread Alan G Isaac
On 5/11/2010 11:57 AM, Jae-Joon Lee wrote: >http://leejjoon.github.com/mpl_toolkits-gridspec/ Yea! Thanks! Alan Isaac -- ___ Matplotlib-users mailing list Matplotlib-us

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-11 Thread Jae-Joon Lee
On Tue, May 11, 2010 at 12:10 PM, Ryan May wrote: > 1) How does this relate to the functionality present in your axes_grid > toolkit? axes_grid toolkit is more flexible and is mainly meant to work with axes with images. gridspec is more for normal axes. As a matter of fact, the multiple axes cr

Re: [Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-11 Thread Ryan May
On Tue, May 11, 2010 at 10:57 AM, Jae-Joon Lee wrote: >  gridspec is a module that implements matplotlib’s Subplot slightly > differently. Current matplotlib’s Subplot only allows a Subplot to > occupy a single cell of the n x m grid. gridspec enables a Subplot to > occupy multiple cells. > >  htt

[Matplotlib-users] introducing mpl_toolkits.gridspec

2010-05-11 Thread Jae-Joon Lee
Hi, gridspec is a module that implements matplotlib’s Subplot slightly differently. Current matplotlib’s Subplot only allows a Subplot to occupy a single cell of the n x m grid. gridspec enables a Subplot to occupy multiple cells. http://leejjoon.github.com/mpl_toolkits-gridspec/ The code is