Re: [Matplotlib-users] GridSpec.GridSpecFromSubplotSpec.update()

2015-04-03 Thread Paul Hobson
Hey Julian, I'm not familiar enough from gridspec to help, but your emails were received by the list. If no one on the list has (time to write) a response, I would recommend making your example a little more reproducible (e.g., what are a and b?) and posting it on stackoverflow. On Fri, Apr 3,

Re: [Matplotlib-users] GridSpec.GridSpecFromSubplotSpec.update()

2015-04-03 Thread Julian Irwin
Hey, Just checking if I sent this out properly. Can someone reply to let me know that this was seen, even if you don't have an answer? Thanks, Julian On Mon, Mar 30, 2015 at 10:10 PM, Julian Irwin julian.ir...@gmail.com wrote: Hey, I am making a plot using nested GridSpec objects. I would

[Matplotlib-users] GridSpec.GridSpecFromSubplotSpec.update()

2015-03-30 Thread Julian Irwin
Hey, I am making a plot using nested GridSpec objects. I would like to adjust the space between the the different GridSpecs. This works fine if I do something like: gs0 = gridspec.GridSpec(a, b) gs1 = gridspec.GridSpec(c, d) gs0.update(...) gs1.update(...) However, If I use