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:35:47 -0400 |
commit | e15736509ab36e33bc71a0fe1120f2974e389725 (patch) | |
tree | d3d405d12df469d601b01e247d7301651629b547 /parse/col_map.py | |
parent | 38e4029048bb693525369ea7eb0e639f73844ed2 (diff) |
Improved flexibility of plot_exps.py script.
* 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 ccce865..f1f9e52 100644 --- a/parse/col_map.py +++ b/parse/col_map.py | |||
@@ -45,7 +45,7 @@ class ColMap(object): | |||
45 | 45 | ||
46 | for col in self.col_list: | 46 | for col in self.col_list: |
47 | if col not in kv: | 47 | if col not in kv: |
48 | key += (None,) | 48 | key += (str(None),) |
49 | else: | 49 | else: |
50 | key += (str(kv[col]),) | 50 | key += (str(kv[col]),) |
51 | 51 | ||