aboutsummaryrefslogtreecommitdiffstats
path: root/plot/style.py
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-02-13 16:26:34 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-02-13 16:26:34 -0500
commit0c28870f3f9dd5fe3c029a63ab4149de5f2beb59 (patch)
tree99165eb68239f6629a02d755889d5f385f3c3e69 /plot/style.py
parent4a1c47705868ce2c48f1c57a7190d435e16c3ce8 (diff)
Removed TupleTable calculation from plot_exps.py
Diffstat (limited to 'plot/style.py')
-rw-r--r--plot/style.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plot/style.py b/plot/style.py
index 7e964b0..ca7a112 100644
--- a/plot/style.py
+++ b/plot/style.py
@@ -7,7 +7,7 @@ class Style(namedtuple('SS', ['marker', 'line', 'color'])):
7 7
8class StyleMap(object): 8class StyleMap(object):
9 '''Maps configs (dicts) to specific line styles.''' 9 '''Maps configs (dicts) to specific line styles.'''
10 DEFAULT = Style('.', '-', 'k') 10 DEFAULT = Style('', '', 'k')
11 11
12 def __init__(self, col_list, col_values): 12 def __init__(self, col_list, col_values):
13 '''Assign (some) columns in @col_list to fields in @Style to vary, and 13 '''Assign (some) columns in @col_list to fields in @Style to vary, and