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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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