diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-02-18 20:42:28 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-02-18 20:42:28 -0500 |
commit | 97f7735c6a9bd6349506123365af6c36830bc25a (patch) | |
tree | 170cf1aca5f4b80cffdebe553e11293f156a9e26 | |
parent | 69486e45c1618b4cdb26de20a253d5e6e7d6ed5a (diff) | |
download | kutter-97f7735c6a9bd6349506123365af6c36830bc25a.tar.gz kutter-97f7735c6a9bd6349506123365af6c36830bc25a.tar.xz kutter-97f7735c6a9bd6349506123365af6c36830bc25a.zip |
graphstats: Set size on frequency graph
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rwxr-xr-x | scripts/graphstats.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/graphstats.py b/scripts/graphstats.py index accb19c2..9887ce27 100755 --- a/scripts/graphstats.py +++ b/scripts/graphstats.py @@ -161,6 +161,7 @@ def plot_frequency(data, outname): ax1.xaxis.set_major_formatter(matplotlib.dates.DateFormatter('%H:%M')) ax1.yaxis.set_major_formatter(matplotlib.ticker.FormatStrFormatter('%d')) ax1.grid(True) + fig.set_size_inches(8, 6) fig.savefig(outname) def main(): |