Statistical Procedures

Programming the statistical procedures from SAS
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-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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