Skip to content

Commit

Permalink
fix wrongly named method (pandas-dev#16881)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhelie authored and jreback committed Jul 11, 2017
1 parent 55af1ab commit a9421af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions asv_bench/benchmarks/rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit a9421af

Please sign in to comment.