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;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1188 views
  • 1 like
  • 2 in conversation