Pythonで学ぶ推測の基礎
Paul Savala
Assistant Professor of Mathematics

2つの対応のある測定の中央値を比較

正規分布でない可能性が高い
s, p_value, m, table = stats.median_test(df['thew_score'], df['arw_score'])
print(p_value < 0.05)
TRUE

tau, p_value = stats.kendalltau( df['thew_rank'], df['arw_rank'])print(tau, p_value < 0.05)
0.651, TRUE
Pythonで学ぶ推測の基礎