[Matplotlib-users] Getting tight layout to recognize the second axis via twinx()

2012-08-29 Thread Jeffrey Spencer
For example running this code and then fig.tight_layout(). The second axis isn't recognized. Is there a way to add it to the tight_layout spec or a better method. out = ones(200) fign = 52 h, w = freqz(out) fig = figure(fign) semilogy(h,abs(w)/abs(max(w)), 'b', label='Mag') ylim(0.01,1.2)

Re: [Matplotlib-users] Getting tight layout to recognize the second axis via twinx()

2012-08-29 Thread Eric Firing
On 2012/08/28 9:11 PM, Jeffrey Spencer wrote: For example running this code and then fig.tight_layout(). The second axis isn't recognized. Is there a way to add it to the tight_layout spec or a better method. This is a bug, or rather one of the ways in which tight_layout is limited. twinx and

Re: [Matplotlib-users] Getting tight layout to recognize the second axis via twinx()

2012-08-29 Thread Jeffrey Spencer
Thanks, sounds good just wanted to know if possible now. I will use something else. Cheers On Aug 29, 2012 5:53 PM, Eric Firing efir...@hawaii.edu wrote: On 2012/08/28 9:11 PM, Jeffrey Spencer wrote: For example running this code and then fig.tight_layout(). The second axis isn't

Re: [Matplotlib-users] Getting tight layout to recognize the second axis via twinx()

2012-08-29 Thread Jae-Joon Lee
On Wed, Aug 29, 2012 at 4:52 PM, Eric Firing efir...@hawaii.edu wrote: twinx and twiny probably will need to return SubplotBase instances if their parent is a SubplotBase instance. My take on this. https://github.com/matplotlib/matplotlib/pull/1169 And, tight_layout seem to work okay with