I am currently trying to work on a problem that looks at performing a oneway ANOVA test, testing the three drugs’ effects on SBP (systolic blood pressure). What
is the overall p-value for the test? Using the Tukey (default) method of multiple
comparisons, what do you conclude about the three drug levels (Placebo, Drug A,
and Drug B)?
But I can not find the appropriate p-value
You don't show us your code, but I will assume that you are doing this Tukey test in PROC GLM. Next time show us your code, don't make me guess or assume.
In the MEANS statement, Tukey's multiple comparison generally does not produce p-values. It produces pairwise comparisons via the LINES option, which produces results like this:
You can also get the confidence intervals for pairwise comparison of means using the CLDIFF option, but again no p-values.
In the LSMEANS statement, with the PDIFF option, you can get p-values
Not sure if this tutorial talks about Tukey, but I still thought I would post it :
SAS Tutorial | What is ANOVA?
https://www.youtube.com/watch?v=C1s0ZXNTheo
by my colleague @AndyRavenna
Koen
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.