[matplotlib-devel] Custom-sized and spanning subplots

2008-11-13 Thread Stan West
Hello, all. I'd like to add to matplotlib facilities for (a) conveniently specifying the relative sizes of subplots, and (b) creating subplots that span cells of the subplot grid. For example, to obtain a column of three subplots with the last one 50% taller than the other two, the user would provi

Re: [matplotlib-devel] Custom-sized and spanning subplots

2008-11-13 Thread Andrew Straw
Hi Stan, You may want to have a look at the mplsizer MPL toolkit I wrote a long time ago and have failed to properly advertise or maintain. But, it does much of what you propose by emulating wx sizers for matplotlib. Anyhow, this is available by svn checkout from https://matplotlib.svn.sourceforge

Re: [matplotlib-devel] Custom-sized and spanning subplots

2008-11-14 Thread Stan West
> You may want to have a look at the mplsizer MPL toolkit I > wrote a long time ago and have failed to properly advertise > or maintain. Thanks; I'll take a look at it. - This SF.Net email is sponsored by the Moblin Your

Re: [matplotlib-devel] Custom-sized and spanning subplots

2008-11-21 Thread Stan West
While I check out the mplsizer toolkit, I'm still interested in any feedback on my ideas for subplot layout features. Does anyone have any critiques, concerns, preferences, suggestions, etc., to voice? Thanks. Stan - This

Re: [matplotlib-devel] Custom-sized and spanning subplots

2008-11-21 Thread John Hunter
On Fri, Nov 21, 2008 at 8:08 AM, Stan West <[EMAIL PROTECTED]> wrote: > While I check out the mplsizer toolkit, I'm still interested in any feedback > on my ideas for subplot layout features. Does anyone have any critiques, > concerns, preferences, suggestions, etc., to voice? Thanks. My main co

Re: [matplotlib-devel] Custom-sized and spanning subplots

2008-11-24 Thread Stan West
> -Original Message- > From: John Hunter [mailto:[EMAIL PROTECTED] > Sent: Friday, November 21, 2008 09:23 > > My main comment is to not try and reuse subplot for this. ... > You want your grids to be irregular, so make a new subclass > of Axes that acts the way you want. Understood. I

Re: [matplotlib-devel] Custom-sized and spanning subplots

2010-08-31 Thread imsc
Is there any development in this project. I was searching for the ways to change the subplot sizes, but could not find any easy or nicer way. -- View this message in context: http://old.nabble.com/Custom-sized-and-spanning-subplots-tp20485188p29580203.html Sent from the matplotlib - devel mai

Re: [matplotlib-devel] Custom-sized and spanning subplots

2010-08-31 Thread Benjamin Root
On Tue, Aug 31, 2010 at 2:38 AM, imsc wrote: > > Is there any development in this project. I was searching for the ways to > change the subplot sizes, but could not find any easy or nicer way. > > > -- > View this message in context: > http://old.nabble.com/Custom-sized-and-spanning-subplots-tp20

Re: [matplotlib-devel] Custom-sized and spanning subplots

2010-09-01 Thread Jae-Joon Lee
On Wed, Sep 1, 2010 at 9:33 AM, Benjamin Root wrote: > matplotlib version 1.0 now has a few different tools that could help you. > There is GridSpec, > > http://matplotlib.sourceforge.net/api/gridspec_api.html# > http://matplotlib.sourceforge.net/users/gridspec.html > There is also AxesGrid1: