|
From: John H. <jdh...@ac...> - 2006-06-23 13:31:25
|
>>>>> "Ryan" == Ryan Krauss <rya...@gm...> writes:
Ryan> I have a similar problem because I use bigfonts. If you are
Ryan> going to make a lot of these plots, you can change the
Ryan> default for left, bottom, height, and width in your
Ryan> matplotlibrc file. Look for the lines:
Ryan> figure.subplot.left : 0.15 #0.125 # the left side of the
Ryan> subplots of the figure figure.subplot.right : 0.925 # the
Ryan> right side of the subplots of the figure
Ryan> figure.subplot.bottom : 0.125 # the bottom of the subplots
Ryan> of the figure figure.subplot.top : 0.925 # the top of the
Ryan> subplots of the figure
And if you just need it for this figure
fig = figure()
fig.subplots_adjust(bottom=0.15)
JDH
|