diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-05-03 16:30:10 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-05-03 16:30:10 -0400 |
commit | ec4c208196a190a8b771bef7e1533b642b59f8df (patch) | |
tree | 1b7146871a8c93dc1c425acbd6b770fefddbd945 /parse/col_map.py | |
parent | a530b618fb32321e61b2a90001caa4d6b1b2b192 (diff) |
Improved flexibility of plot_exps.py script.wip-color-mc
* No longer needs an X connection to render. This also vastly increases
performance.
* If too many configuration values are plotted, a key with color=column1,
line=column2, marker=column3 etc is not created. Instead, each combination
of values is given its own line/color/marker style and plotted, and each
line has an entry in the key. Ugly, but better than nothing.
Diffstat (limited to 'parse/col_map.py')
-rw-r--r-- | parse/col_map.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse/col_map.py b/parse/col_map.py index 59484e8..f643217 100644 --- a/parse/col_map.py +++ b/parse/col_map.py | |||
@@ -48,7 +48,7 @@ class ColMap(object): | |||
48 | 48 | ||
49 | for col in self.col_list: | 49 | for col in self.col_list: |
50 | if col not in kv: | 50 | if col not in kv: |
51 | key += (None,) | 51 | key += (str(None),) |
52 | else: | 52 | else: |
53 | key += (str(kv[col]),) | 53 | key += (str(kv[col]),) |
54 | 54 | ||