Answers:
正如Stijn所指出的,ks检验返回D统计量和与D统计量相对应的p值。D统计量是两个样本的CDF之间的绝对最大距离(最大)。该数字越接近0,则两个样本从同一分布中抽取的可能性就越大。查看Wikipedia页面上的ks测试。它提供了很好的解释:https : //en.m.wikipedia.org/wiki/Kolmogorov%E2%80%93Smirnov_test
ks检验返回的p值与其他p值具有相同的解释。如果p值小于您的显着性水平,则您拒绝零假设,即两个样本均来自同一分布。如果您对该过程感兴趣,可以在线找到用于将D统计量转换为p值的表。
在Google中搜索ks_2samp时,第一个匹配项是此网站。在它上面,您可以看到功能说明:
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