Hello
I need to calculate KS between two groups of variables. Each group has 5 variables.
I use the following code,
proc npar1way edf plots=all data=have;
class BLdist1-BLdist5;
var dist1-dist5;
run;
LOG shows: ERROR: One and only one CLASS variable must be specified.
How can I fix the code? And can I store the result of KS as a new valuable in my dataset?
Thanks!