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

Hello,

 

I have run into a strange problem. I am running N-way anova and what I have found out is if i change the order of the variables that I am using in the anova, then the P-values are changing

 

E.g. when I run the below procedure

 

ods noproctitle;
ods graphics / imagemap=on;

proc glm data=WORK.INTERNETDATA;
class Exits Continent Sourcegroup Uniquepageviews Bounces Visits;
model Timeinpage=Exits Continent Sourcegroup Uniquepageviews Bounces Visits /
ss1 ss3;
lsmeans Exits Continent Sourcegroup Uniquepageviews Bounces Visits /
adjust=tukey pdiff=all alpha=0.05 cl;
quit;

 

The value of Sourcegroup is significant i.e. 0.0037

 

Now when i change the sequence of the variable Bounces to something like this

 

ods noproctitle;
ods graphics / imagemap=on;

proc glm data=WORK.INTERNETDATA;
class Bounces Exits Continent Sourcegroup Uniquepageviews Visits;
model Timeinpage=Bounces Exits Continent Sourcegroup Uniquepageviews Visits /
ss1 ss3;
lsmeans Bounces Exits Continent Sourcegroup Uniquepageviews Visits /
adjust=tukey pdiff=all alpha=0.05 cl;
quit;

 

The value of the variable Souregroup is no longer significant i.e. 0.0752

 

Can somebody tell me why is this occuring.

 

Thanks and regards,

 

Aditya

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
It is difference between SS3 and SS1.

If you only use SS3 , you will get the same P-value , otherwise if you use SS1 ,you will get different one.


proc glm data=sashelp.class;
class age sex;
model weight=age sex/solution ss3;
run;

proc glm data=sashelp.class;
class age sex;
model weight=sex age/solution ss3;
run;

View solution in original post

1 REPLY 1
Ksharp
Super User
It is difference between SS3 and SS1.

If you only use SS3 , you will get the same P-value , otherwise if you use SS1 ,you will get different one.


proc glm data=sashelp.class;
class age sex;
model weight=age sex/solution ss3;
run;

proc glm data=sashelp.class;
class age sex;
model weight=sex age/solution ss3;
run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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