From 3a3b4df685fe4be4532835c66cb6673c2e4867b3 Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Mon, 28 Apr 2014 23:30:52 -0700 Subject: [PATCH] fix groupBy postprocess was not removing percent --- planetstack/hpc_wizard/bigquery_analytics.py | 1 + 1 file changed, 1 insertion(+) diff --git a/planetstack/hpc_wizard/bigquery_analytics.py b/planetstack/hpc_wizard/bigquery_analytics.py index dafb55c..4e375df 100644 --- a/planetstack/hpc_wizard/bigquery_analytics.py +++ b/planetstack/hpc_wizard/bigquery_analytics.py @@ -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) -- 2.43.0