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

Hi all,

 

Thank you for your attention first of all!

 

I am running PROC ANOVA with MEANS statement to get group means as below:

proc anova data=indat;

class classvar;

model cost = classvar;

means classvar /tukey;

run;

 

The Tukey test generates the table of difference between means along with 95% CI. However, I need to have specific p-values per difference between means.

 

Is there a way to list out the specific p-values?

 

Thanks a lot!

Lizi

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

It sounds like you want an all pairwise comparison of the mean differences. You can use the LSMEANS statement in PROC GLM and the PDIFF=ALL option, as shown in the article "The diffogram and other graphs for multiple comparisons of means." The article includes an example, links to the documentation, and even a discussion of how to visualize the mean differences.

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

It sounds like you want an all pairwise comparison of the mean differences. You can use the LSMEANS statement in PROC GLM and the PDIFF=ALL option, as shown in the article "The diffogram and other graphs for multiple comparisons of means." The article includes an example, links to the documentation, and even a discussion of how to visualize the mean differences.

lizzy28
Quartz | Level 8

Thanks a lot!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 4284 views
  • 0 likes
  • 2 in conversation