> Another approach is to use the subplotpars kwarg to adjust
> the positioning parameters when initializing the figure.
Here's how I like to implement that approach when I want strict dimensions:
figW = 6.5 # in inches
figH = 7
fig = figure(figsize=(figW, figH),
subplotpars=
Erik Tollerud wrote:
> I've been grappling with an annoying bug for a while now - attached
> are two examples of an empty set of log-log axes with an xlabel. one
> has figsize(10,5) and the other is figsize(10,6) . As is apparent
> from the images, the (10,5) figure has the xlabel cut off because
I've been grappling with an annoying bug for a while now - attached
are two examples of an empty set of log-log axes with an xlabel. one
has figsize(10,5) and the other is figsize(10,6) . As is apparent
from the images, the (10,5) figure has the xlabel cut off because the
log axes are too big. I