BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
AmitKB
Fluorite | Level 6


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

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

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

PG

View solution in original post

1 REPLY 1
PGStats
Opal | Level 21

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

PG

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 1601 views
  • 0 likes
  • 2 in conversation