BookmarkSubscribeRSS Feed
nursienurse
Calcite | Level 5

How can I determine the median and IQR of my Wilcoxon scores?

I finally figured out that if I do ods graphics on; I will get a box plot of the wilcoxon scores, but the median and Q1 and Q3 aren't labeled? Is there away to get these values labeled on my ods graphics boxplot or should I be going about this a different way?

what I have right now:

 

proc npar1way data= Example wilcoxon; class variableone; var othervariable; run;

 

any help is appreciated!

1 REPLY 1
FreelanceReinh
Jade | Level 19

I would compute the Wilcoxon scores using PROC RANK and then apply PROC MEANS or PROC SUMMARY to the output dataset in order to obtain the desired descriptive statistics:

proc rank data=Example out=wscores;
var othervariable;
run;

proc means data=wscores q1 median q3 qrange;
class variableone;
var othervariable;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1525 views
  • 1 like
  • 2 in conversation