4
4
5
5
class Methods :
6
6
7
- sample_time = 0.2
8
7
params = (['DataFrame' , 'Series' ],
9
8
[10 , 1000 ],
10
9
['int' , 'float' ],
@@ -23,7 +22,6 @@ def time_rolling(self, constructor, window, dtype, method):
23
22
24
23
class ExpandingMethods :
25
24
26
- sample_time = 0.2
27
25
params = (['DataFrame' , 'Series' ],
28
26
['int' , 'float' ],
29
27
['median' , 'mean' , 'max' , 'min' , 'std' , 'count' , 'skew' , 'kurt' ,
@@ -41,7 +39,6 @@ def time_expanding(self, constructor, dtype, method):
41
39
42
40
class EWMMethods :
43
41
44
- sample_time = 0.2
45
42
params = (['DataFrame' , 'Series' ],
46
43
[10 , 1000 ],
47
44
['int' , 'float' ],
@@ -58,7 +55,6 @@ def time_ewm(self, constructor, window, dtype, method):
58
55
59
56
60
57
class VariableWindowMethods (Methods ):
61
- sample_time = 0.2
62
58
params = (['DataFrame' , 'Series' ],
63
59
['50s' , '1h' , '1d' ],
64
60
['int' , 'float' ],
@@ -75,7 +71,6 @@ def setup(self, constructor, window, dtype, method):
75
71
76
72
class Pairwise :
77
73
78
- sample_time = 0.2
79
74
params = ([10 , 1000 , None ],
80
75
['corr' , 'cov' ],
81
76
[True , False ])
@@ -95,7 +90,6 @@ def time_pairwise(self, window, method, pairwise):
95
90
96
91
97
92
class Quantile :
98
- sample_time = 0.2
99
93
params = (['DataFrame' , 'Series' ],
100
94
[10 , 1000 ],
101
95
['int' , 'float' ],
0 commit comments