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
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.
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.
Thanks a lot!
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.