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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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