44
55class Methods :
66
7- sample_time = 0.2
87 params = (['DataFrame' , 'Series' ],
98 [10 , 1000 ],
109 ['int' , 'float' ],
@@ -23,7 +22,6 @@ def time_rolling(self, constructor, window, dtype, method):
2322
2423class ExpandingMethods :
2524
26- sample_time = 0.2
2725 params = (['DataFrame' , 'Series' ],
2826 ['int' , 'float' ],
2927 ['median' , 'mean' , 'max' , 'min' , 'std' , 'count' , 'skew' , 'kurt' ,
@@ -41,7 +39,6 @@ def time_expanding(self, constructor, dtype, method):
4139
4240class EWMMethods :
4341
44- sample_time = 0.2
4542 params = (['DataFrame' , 'Series' ],
4643 [10 , 1000 ],
4744 ['int' , 'float' ],
@@ -58,7 +55,6 @@ def time_ewm(self, constructor, window, dtype, method):
5855
5956
6057class VariableWindowMethods (Methods ):
61- sample_time = 0.2
6258 params = (['DataFrame' , 'Series' ],
6359 ['50s' , '1h' , '1d' ],
6460 ['int' , 'float' ],
@@ -75,7 +71,6 @@ def setup(self, constructor, window, dtype, method):
7571
7672class Pairwise :
7773
78- sample_time = 0.2
7974 params = ([10 , 1000 , None ],
8075 ['corr' , 'cov' ],
8176 [True , False ])
@@ -95,7 +90,6 @@ def time_pairwise(self, window, method, pairwise):
9590
9691
9792class Quantile :
98- sample_time = 0.2
9993 params = (['DataFrame' , 'Series' ],
10094 [10 , 1000 ],
10195 ['int' , 'float' ],
0 commit comments