🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 11-02-2017 04:33 PM
(9541 views)
How do I calculate the Mann Whitney U statistic? There is not a direct output from PROC NPAR1WAY.
PROC NPAR1WAY data=new wilcoxon;
class Gender;
var Variable;
exact wilcoxon;
run;
Thanks!
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
The Wilcoxon rank-sum test is the same as the Mann-Whitney U test, so while SAS does not report a Mann-Whitney U statistic, the results are the same as the Wilcoxon rank-sum test.
-Brian
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
The Wilcoxon rank-sum test is the same as the Mann-Whitney U test, so while SAS does not report a Mann-Whitney U statistic, the results are the same as the Wilcoxon rank-sum test.
-Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I need to report to the U statistic. Should I just use SPSS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
As far as I know, SAS doesn't report the U statistic itself. If you need the U statistic specifically and have access to other stats packages that report it, I would use that just to be safe.