回答:
Stijnが指摘したように、ks検定はD統計とD統計に対応するp値を返します。D統計は、2つのサンプルのCDF間の絶対最大距離(上限)です。この数値が0に近いほど、2つのサンプルが同じ分布から抽出された可能性が高くなります。ksテストについては、Wikipediaページをご覧ください。それは良い説明を提供します:https : //en.m.wikipedia.org/wiki/Kolmogorov%E2%80%93Smirnov_test
ksテストによって返されるp値は、他のp値と同じ解釈になります。p値が有意水準より小さい場合、2つのサンプルが同じ分布から引き出されたという帰無仮説を棄却します。手順に興味がある場合は、D統計をp値に変換するためのテーブルをオンラインで見つけることができます。
ks_2sampのGoogle検索を行う場合、最初のヒットはこの Webサイトです。その上で、関数の仕様を確認できます。
This is a two-sided test for the null hypothesis that 2 independent samples are drawn from the same continuous distribution.
Parameters :
a, b : sequence of 1-D ndarrays
two arrays of sample observations assumed to be drawn from a continuous distribution, sample sizes can be different
Returns :
D : float, KS statistic
p-value : float, two-tailed p-value