- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
But I can not find the appropriate p-value
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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