Re: [Matplotlib-users] figure aspect ratio

2010-02-13 Thread Jae-Joon Lee
On Fri, Feb 12, 2010 at 1:48 PM, Tomasz Koziara wrote: > but then axis labels or even numbering gets cut off. On the other hand > playing with: > You need to manually adjust subplot parameters http://matplotlib.sourceforge.net/api/pyplot_api.html?highlight=subplots_adjust#matplotlib.pyplot.subpl

[Matplotlib-users] figure aspect ratio

2010-02-12 Thread Tomasz Koziara
Hi I would like to have a bar plot twice as heigh as it is wide. It seems though that setting the aspect ratio is nontrivial. I tried this: w, h = fig.figaspect (2.0) plt.figure().set_figheight (h) plt.figure().set_figwidth (w) but then axis labels or even numbering gets cut off. On t