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!