fix groupBy postprocess was not removing percent
authorScott Baker <smbaker@gmail.com>
Tue, 29 Apr 2014 06:30:52 +0000 (23:30 -0700)
committerScott Baker <smbaker@gmail.com>
Tue, 29 Apr 2014 06:30:52 +0000 (23:30 -0700)
planetstack/hpc_wizard/bigquery_analytics.py

index dafb55c..4e375df 100644 (file)
@@ -204,6 +204,7 @@ class BigQueryAnalytics:
         avg = [x.replace("%","") for x in avg]
         computed = [x.replace("%","") for x in computed]
         maxi = [x.replace("%","") for x in maxi]
+        groupBy = [x.replace("%","") for x in groupBy]
 
         for (k,v) in filter.items():
             rows = self.filter_results(rows, k, v)