diff --git a/plotting/timeseries/aggregateTimeseries_pd.py b/plotting/timeseries/aggregateTimeseries_pd.py index 5c6404af647c34773d63195b204a403536c99ed0..533db212096ff23b20dec4845ef49718c29490c1 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)