Skip to content

Commit 5fd9420

Browse files
committed
Remove old rolling method benchmarks
1 parent c10c00e commit 5fd9420

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

asv_bench/benchmarks/rolling.py

-15
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,3 @@ def setup(self, contructor, window, dtype, percentile):
3939

4040
def time_quantile(self, contructor, window, dtype, percentile):
4141
self.roll.quantile(percentile)
42-
43-
44-
class DepreciatedRolling(object):
45-
46-
sample_time = 0.2
47-
params = ['rolling_median', 'rolling_mean', 'rolling_min', 'rolling_max',
48-
'rolling_var', 'rolling_skew', 'rolling_kurt', 'rolling_std']
49-
param_names = ['method']
50-
51-
def setup(self, method):
52-
self.arr = np.random.randn(100000)
53-
self.win = 100
54-
55-
def time_method(self, method):
56-
getattr(pd, method)(self.arr, self.win)

0 commit comments

Comments
 (0)