From 88083e072fbbd67956c26b5c7700608b0e0246e2 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 12 May 2013 16:36:54 -0400 Subject: [PATCH] plot-unfold.py: Autoscale tight (to avoid wasting space) --- plot-unfold.py | 1 + 1 file changed, 1 insertion(+) 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) -- 2.26.2