On Wed, May 12, 2010 at 5:58 AM, Yannick Copin
<yannick.co...@laposte.net> 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 = gridspec.subplot2grid((2,2))
ax1 = grid[0,:]

Regards,

-JJ

------------------------------------------------------------------------------

_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to