From e15736509ab36e33bc71a0fe1120f2974e389725 Mon Sep 17 00:00:00 2001 From: Jonathan Herman Date: Fri, 3 May 2013 16:30:10 -0400 Subject: 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. --- parse/col_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'parse') 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): for col in self.col_list: if col not in kv: - key += (None,) + key += (str(None),) else: key += (str(kv[col]),) -- cgit v1.2.2