From ce2843dcf1b7674e728008f70ee2b021d1f40c85 Mon Sep 17 00:00:00 2001 From: Julia Abramenko Date: Mon, 24 Jun 2019 17:13:14 +0200 Subject: [PATCH] preparing merge --- plotting/timeseries/aggregateTimeseries_pd.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/plotting/timeseries/aggregateTimeseries_pd.py b/plotting/timeseries/aggregateTimeseries_pd.py index 5c6404a..533db21 100644 --- a/plotting/timeseries/aggregateTimeseries_pd.py +++ b/plotting/timeseries/aggregateTimeseries_pd.py @@ -126,9 +126,6 @@ class TimeSeriesAggregator: indices_throughput = [x for x in agg_frame_throughput.columns if x != "Mean"] for x in indices_latency: agg_frame_latency = self.remove_outliers(agg_frame_latency, x) - #for x in indices_throughput: - # agg_frame_throughput = self.remove_outliers(agg_frame_throughput, x) - # calculate mean for each row agg_frame_latency['Mean'] = agg_frame_latency.mean(axis=1, skipna=True) agg_frame_throughput['Mean'] = agg_frame_throughput.mean(axis=1, skipna=True) -- GitLab