i have more than 100 variables and use npar1way to estimate KS.
My aim is each variable to be tested based on the class variable
proc npar1way edf data=mydata noprint;
class source;
var &val;
output out=stat ks;
run;
Below is an example of the outcome for one variable. My question is, do i need to use the KS or the D statistic?
Kolmogorov-Smirnov Two-Sample Test (Asymptotic) |
|
KS |
0.038621 |
D |
0.1039 |
KSa |
1.07377 |
Pr > KSa |
0.1991 |