Skip to content

Commit

Permalink
use asymptotic method to derive kendal tau (blue-yonder#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxBenChrist authored Jan 10, 2019
1 parent 05734d4 commit 68a64a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsfresh/feature_selection/significance_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def target_real_feature_real_test(x, y):
__check_if_pandas_series(x, y)
_check_for_nans(x, y)

tau, p_value = stats.kendalltau(x, y)
tau, p_value = stats.kendalltau(x, y, method="asymptotic")
return p_value


Expand Down

0 comments on commit 68a64a0

Please sign in to comment.