Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion asv_bench/benchmarks/stat_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def time_average_old(self, constructor, pct):

class Correlation:

params = [["spearman", "kendall", "pearson"], [True, False]]
params = [["spearman", "pearson"], [True, False]]
param_names = ["method", "use_bottleneck"]

def setup(self, method, use_bottleneck):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you remove the parametrization of use_bottleneck here and in other methods? Also can remove the import / USE_BOTTLENECK assignment in setup

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

Expand Down