aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn B. Brandenburg <bbb@cs.unc.edu>2010-06-10 21:16:36 -0400
committerBjörn B. Brandenburg <bbb@cs.unc.edu>2010-06-10 21:16:36 -0400
commit9e05cc4a954381f0c35c765daaccd8cd93fda74c (patch)
tree6a3b933d2059a317a24c4900e917faec222a71ac
parentcf75a0c9d6167626e83bf78021dcb0ab067fb77b (diff)
add --smooth option
-rwxr-xr-xplot.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/plot.py b/plot.py
index 8ac3838..13cc6a7 100755
--- a/plot.py
+++ b/plot.py
@@ -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),