aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-02-18 20:42:28 -0500
committerKevin O'Connor <kevin@koconnor.net>2018-02-18 20:42:28 -0500
commit97f7735c6a9bd6349506123365af6c36830bc25a (patch)
tree170cf1aca5f4b80cffdebe553e11293f156a9e26 /scripts
parent69486e45c1618b4cdb26de20a253d5e6e7d6ed5a (diff)
downloadkutter-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>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/graphstats.py1
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():