diff options
author | Björn B. Brandenburg <bbb@cs.unc.edu> | 2010-06-10 21:16:36 -0400 |
---|---|---|
committer | Björn B. Brandenburg <bbb@cs.unc.edu> | 2010-06-10 21:16:36 -0400 |
commit | 9e05cc4a954381f0c35c765daaccd8cd93fda74c (patch) | |
tree | 6a3b933d2059a317a24c4900e917faec222a71ac /plot.py | |
parent | cf75a0c9d6167626e83bf78021dcb0ab067fb77b (diff) |
add --smooth option
Diffstat (limited to 'plot.py')
-rwxr-xr-x | plot.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -20,6 +20,7 @@ options = [ | |||
20 | 20 | ||
21 | # formatting options | 21 | # formatting options |
22 | # These may or may not be supported by a particular experiment plotter. | 22 | # These may or may not be supported by a particular experiment plotter. |
23 | o(None, '--smooth', action='store_true', dest='smooth'), | ||
23 | o(None, '--paper', action='store_true', dest='paper'), | 24 | o(None, '--paper', action='store_true', dest='paper'), |
24 | o(None, '--wide', action='store_true', dest='wide'), | 25 | o(None, '--wide', action='store_true', dest='wide'), |
25 | o(None, '--column', action='store_true', dest='column'), | 26 | o(None, '--column', action='store_true', dest='column'), |
@@ -42,6 +43,7 @@ defaults = { | |||
42 | 'alternate' : False, | 43 | 'alternate' : False, |
43 | 'column' : False, | 44 | 'column' : False, |
44 | 'slides' : False, | 45 | 'slides' : False, |
46 | 'smooth' : False, | ||
45 | 47 | ||
46 | # legacy "options" that are not actually options. | 48 | # legacy "options" that are not actually options. |
47 | 'xrange' : (0.5, 32.5), | 49 | 'xrange' : (0.5, 32.5), |