This is documentation for an old release of SciPy (version 0.10.1). Read this page Search for this page in the documentation of the latest stable release (version 1.15.1).
scipy.stats.mstats.ks_twosamp
-
scipy.stats.mstats.ks_twosamp(data1, data2, alternative='two_sided')
Computes the Kolmogorov-Smirnov test on two samples.
Missing values are discarded.
Parameters : | data1 : sequence
- data2 : sequence
Second data set
- alternative : {‘two_sided’, ‘less’, ‘greater’} optional
Indicates the alternative hypothesis.
|
Returns : | d : float
Value of the Kolmogorov Smirnov test
- p : float
Corresponding p-value.
|