diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-02-13 16:26:34 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-02-13 16:26:34 -0500 |
commit | 0c28870f3f9dd5fe3c029a63ab4149de5f2beb59 (patch) | |
tree | 99165eb68239f6629a02d755889d5f385f3c3e69 /plot/style.py | |
parent | 4a1c47705868ce2c48f1c57a7190d435e16c3ce8 (diff) |
Removed TupleTable calculation from plot_exps.py
Diffstat (limited to 'plot/style.py')
-rw-r--r-- | plot/style.py | 2 |
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 | ||
8 | class StyleMap(object): | 8 | class 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 |