Hi all,
I want to compare the same variable distribution over two data pulls or over time.
What I want to see if the distribution has changed over time statistically. Can i get KS stats for the variable.
How would i do it.
I appreciate all your help.
Regards,
Amit
You can get the tests that you want with npar1way like this :
data test;
do time = 10, 11;
do i = 1 to 25;
x = rand("NORMAL", time, 1);
output;
end;
end;
run;
proc npar1way data=test edf;
class time;
var x;
run;
PG
You can get the tests that you want with npar1way like this :
data test;
do time = 10, 11;
do i = 1 to 25;
x = rand("NORMAL", time, 1);
output;
end;
end;
run;
proc npar1way data=test edf;
class time;
var x;
run;
PG
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.