Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion asv_bench/benchmarks/index_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def time_is_dates_only(self):

class Ops:

sample_time = 0.2
params = ['float', 'int']
param_names = ['dtype']

Expand Down
6 changes: 0 additions & 6 deletions asv_bench/benchmarks/rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

class Methods:

sample_time = 0.2
params = (['DataFrame', 'Series'],
[10, 1000],
['int', 'float'],
Expand All @@ -23,7 +22,6 @@ def time_rolling(self, constructor, window, dtype, method):

class ExpandingMethods:

sample_time = 0.2
params = (['DataFrame', 'Series'],
['int', 'float'],
['median', 'mean', 'max', 'min', 'std', 'count', 'skew', 'kurt',
Expand All @@ -41,7 +39,6 @@ def time_expanding(self, constructor, dtype, method):

class EWMMethods:

sample_time = 0.2
params = (['DataFrame', 'Series'],
[10, 1000],
['int', 'float'],
Expand All @@ -58,7 +55,6 @@ def time_ewm(self, constructor, window, dtype, method):


class VariableWindowMethods(Methods):
sample_time = 0.2
params = (['DataFrame', 'Series'],
['50s', '1h', '1d'],
['int', 'float'],
Expand All @@ -75,7 +71,6 @@ def setup(self, constructor, window, dtype, method):

class Pairwise:

sample_time = 0.2
params = ([10, 1000, None],
['corr', 'cov'],
[True, False])
Expand All @@ -95,7 +90,6 @@ def time_pairwise(self, window, method, pairwise):


class Quantile:
sample_time = 0.2
params = (['DataFrame', 'Series'],
[10, 1000],
['int', 'float'],
Expand Down