From a9421af1aac906cc38d025ed5db4a2b55cb8b9bc Mon Sep 17 00:00:00 2001 From: Jean Helie Date: Tue, 11 Jul 2017 17:40:20 +0100 Subject: [PATCH] fix wrongly named method (#16881) --- asv_bench/benchmarks/rolling.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/asv_bench/benchmarks/rolling.py b/asv_bench/benchmarks/rolling.py index 9da9d0b855323..899349cd21f84 100644 --- a/asv_bench/benchmarks/rolling.py +++ b/asv_bench/benchmarks/rolling.py @@ -26,7 +26,7 @@ def time_rolling_quantile_median(self): def time_rolling_median(self): (self.df.rolling(self.wins).median()) - def time_rolling_median(self): + def time_rolling_mean(self): (self.df.rolling(self.wins).mean()) def time_rolling_max(self): @@ -68,7 +68,7 @@ def time_rolling_quantile_median_l(self): def time_rolling_median_l(self): (self.df.rolling(self.winl).median()) - def time_rolling_median_l(self): + def time_rolling_mean_l(self): (self.df.rolling(self.winl).mean()) def time_rolling_max_l(self): @@ -118,7 +118,7 @@ def time_rolling_quantile_median(self): def time_rolling_median(self): (self.sr.rolling(self.wins).median()) - def time_rolling_median(self): + def time_rolling_mean(self): (self.sr.rolling(self.wins).mean()) def time_rolling_max(self): @@ -160,7 +160,7 @@ def time_rolling_quantile_median_l(self): def time_rolling_median_l(self): (self.sr.rolling(self.winl).median()) - def time_rolling_median_l(self): + def time_rolling_mean_l(self): (self.sr.rolling(self.winl).mean()) def time_rolling_max_l(self):