From: W. Trevor King Date: Sun, 12 May 2013 20:36:54 +0000 (-0400) Subject: plot-unfold.py: Autoscale tight (to avoid wasting space) X-Git-Tag: v0.2~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=88083e072fbbd67956c26b5c7700608b0e0246e2;p=unfold-protein.git plot-unfold.py: Autoscale tight (to avoid wasting space) --- diff --git a/plot-unfold.py b/plot-unfold.py index d54d823..6b20d8b 100755 --- a/plot-unfold.py +++ b/plot-unfold.py @@ -35,6 +35,7 @@ def convert_to_png(filename): except KeyError, e: raise BadDataError(e) plot = axes.plot(z, d, '.') + axes.autoscale(tight=True) FIGURE.savefig(png)