<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Wilcoxon rank sums/median and IQR in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Wilcoxon-rank-sums-median-and-IQR/m-p/247229#M309421</link>
    <description>&lt;P&gt;How can I determine the median and IQR of my Wilcoxon scores?&lt;/P&gt;
&lt;P&gt;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?&lt;/P&gt;
&lt;P&gt;what I have right now:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc npar1way data= Example&amp;nbsp;wilcoxon; class variableone; var othervariable; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any help is appreciated!&lt;/P&gt;</description>
    <pubDate>Mon, 01 Feb 2016 15:40:48 GMT</pubDate>
    <dc:creator>nursienurse</dc:creator>
    <dc:date>2016-02-01T15:40:48Z</dc:date>
    <item>
      <title>Wilcoxon rank sums/median and IQR</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wilcoxon-rank-sums-median-and-IQR/m-p/247229#M309421</link>
      <description>&lt;P&gt;How can I determine the median and IQR of my Wilcoxon scores?&lt;/P&gt;
&lt;P&gt;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?&lt;/P&gt;
&lt;P&gt;what I have right now:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc npar1way data= Example&amp;nbsp;wilcoxon; class variableone; var othervariable; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any help is appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2016 15:40:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wilcoxon-rank-sums-median-and-IQR/m-p/247229#M309421</guid>
      <dc:creator>nursienurse</dc:creator>
      <dc:date>2016-02-01T15:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: Wilcoxon rank sums/median and IQR</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Wilcoxon-rank-sums-median-and-IQR/m-p/247238#M309422</link>
      <description>&lt;P&gt;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:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc rank data=Example out=wscores;
var othervariable;
run;

proc means data=wscores q1 median q3 qrange;
class variableone;
var othervariable;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Feb 2016 16:13:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Wilcoxon-rank-sums-median-and-IQR/m-p/247238#M309422</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-02-01T16:13:06Z</dc:date>
    </item>
  </channel>
</rss>

