diff options
author | Tobias Klauser <tobias.klauser@uzh.ch> | 2013-05-02 08:58:28 +0200 |
---|---|---|
committer | Tobias Klauser <tobias.klauser@uzh.ch> | 2013-05-02 08:58:28 +0200 |
commit | c29c3fc0ccbae648b0c5d60e1b452f6e4379d3cb (patch) | |
tree | 8d4b86e94a25702295b78eb9ca00f17d615e235b /scripts | |
parent | f7a05ac4cef7af38a733a1909c6b2a45d4c9c16a (diff) |
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/plotsto.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/plotsto.py b/scripts/plotsto.py index 259df30..63192c2 100755 --- a/scripts/plotsto.py +++ b/scripts/plotsto.py @@ -160,7 +160,7 @@ def main(): f, ax = plt.subplots(nrows=(len(cols) - 1) / 2, ncols=2, sharex='col', sharey='row') for i, y in enumerate(ys): ax[i/2,i%2].plot(t, y) - ax[i/2,i%2].set_title(cols[i+1]) + ax[i/2,i%2].set_title(cols[i+1], fontsize=9) l.append(cols[i+1]) plt.axis([0, t.max(), 0, 1.0], 'equal') |