<?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 Re: Mann–Whitney U test in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/550223#M27499</link>
    <description>&lt;P&gt;Hello Norman21, thank you for replying.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the proc, but I have no idea how to interpretate...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sem título.png" style="width: 358px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28648iC0C0C64B5651D9D5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Sem título.png" alt="Sem título.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Histogram3.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28649i31009E34DC1D7A0F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Histogram3.png" alt="Histogram3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Apr 2019 13:31:27 GMT</pubDate>
    <dc:creator>aska_ujita</dc:creator>
    <dc:date>2019-04-11T13:31:27Z</dc:date>
    <item>
      <title>Mann–Whitney U test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/549919#M27497</link>
      <description>&lt;P&gt;Hello there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am testing two treatments (trained and not trained). And after I collected the behaviour and scored it in 0 (absence of reactivity) and 1 (presence of reactivity). The data were collected in days of lactation (1, 3, 5, 7 and 9 ).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Day of lactation&amp;nbsp; ---&amp;gt;&amp;nbsp; Percentage of reactivity by group&amp;nbsp; ---&amp;gt; Significance&lt;/P&gt;&lt;P&gt;Day 1&amp;nbsp; &amp;nbsp;---&amp;gt;&amp;nbsp; 30% (trained group)&amp;nbsp; 80% (not trained group) ---&amp;gt; P value&lt;/P&gt;&lt;P&gt;Day 3&amp;nbsp; &amp;nbsp;---&amp;gt;&amp;nbsp; 20% (trained group)&amp;nbsp; 60% (not trained group) ---&amp;gt; P value&lt;/P&gt;&lt;P&gt;Day 5&amp;nbsp; &amp;nbsp;---&amp;gt;&amp;nbsp; 10% (trained group)&amp;nbsp; 45% (not trained group) ---&amp;gt; P value&lt;/P&gt;&lt;P&gt;Day 7&amp;nbsp; &amp;nbsp;---&amp;gt;&amp;nbsp; 0% (trained group)&amp;nbsp; 30% (not trained group) ---&amp;gt; P value&lt;/P&gt;&lt;P&gt;Day 9&amp;nbsp; &amp;nbsp;---&amp;gt;&amp;nbsp; 0% (trained group)&amp;nbsp; 20% (not trained group) ---&amp;gt; P value&lt;/P&gt;&lt;P&gt;Mean&amp;nbsp; &amp;nbsp;---&amp;gt;&amp;nbsp; 12% (trained group)&amp;nbsp; 47% (not trained group) ---&amp;gt; P value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So... I&amp;nbsp; would like to compare &lt;U&gt;between&lt;/U&gt; &lt;EM&gt;treatments&lt;/EM&gt; &lt;U&gt;by&lt;/U&gt; day.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My datas have non-normal distribution and are binomial.&lt;/P&gt;&lt;P&gt;I used PROC GLIMMIX:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;proc glimmix data=A;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;class treatment day;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;model reactivity=treatment day treatment*day / dist=binomial DDFM=KR;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;random subject subjectID;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lsmeans treatment/ adjust=tukey lines;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;by day;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I read some papers that used "Mann–Whitney U test", is there somebody who can explain how to do it?&lt;/P&gt;&lt;P&gt;or just PROC GLIMMIX is already enough?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the help.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 11:46:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/549919#M27497</guid>
      <dc:creator>aska_ujita</dc:creator>
      <dc:date>2019-04-10T11:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Mann–Whitney U test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/549980#M27498</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you look near the top of this page:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stats.idre.ucla.edu/sas/whatstat/what-statistical-analysis-should-i-usestatistical-analyses-using-sas/#wilc" target="_blank"&gt;https://stats.idre.ucla.edu/sas/whatstat/what-statistical-analysis-should-i-usestatistical-analyses-using-sas/#wilc&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(or search for "Wilcoxon-Mann-Whitney", which is another name for the Mann-Whitney U test), you will see an example using SAS.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2019 14:41:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/549980#M27498</guid>
      <dc:creator>Norman21</dc:creator>
      <dc:date>2019-04-10T14:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Mann–Whitney U test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/550223#M27499</link>
      <description>&lt;P&gt;Hello Norman21, thank you for replying.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the proc, but I have no idea how to interpretate...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sem título.png" style="width: 358px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28648iC0C0C64B5651D9D5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Sem título.png" alt="Sem título.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Histogram3.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28649i31009E34DC1D7A0F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Histogram3.png" alt="Histogram3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 13:31:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/550223#M27499</guid>
      <dc:creator>aska_ujita</dc:creator>
      <dc:date>2019-04-11T13:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Mann–Whitney U test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/550242#M27500</link>
      <description>&lt;P&gt;Aska,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could use the Mann-Whitney-Wilcoxon (MWW) within a day to assess whether the trained or untrained had different reactivity.&amp;nbsp; As each subject is assessed on each day, it would be inappropriate to simply lump all of the observations into one MWW analysis (violates the independence assumption).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as interpretation is concerned, this Wiki is reasonable&lt;/P&gt;
&lt;P&gt;&lt;A href="https://en.wikipedia.org/wiki/Mann%E2%80%93Whitney_U_test" target="_blank"&gt;https://en.wikipedia.org/wiki/Mann%E2%80%93Whitney_U_test&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and you can also get a lot from the SAS documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I generally use the two-sided t-approximation for the test for the MWW.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've not used GLIMMIX in years, so I can't comment on it's appropriateness.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Doc&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 14:14:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/550242#M27500</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2019-04-11T14:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Mann–Whitney U test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/550401#M27501</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;Aska,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;i think you can use this code for binomial distribution with repeated measures:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glimmix data=A;
	class subjectID treatment day;
	model reactivity=treatment day treatment*day / dist=binomial DDFM=KR;
	random subjectID;
	lsmeans treatment day treatment*day/ pdiff lines;

	 /* if there is a significant interaction then you can compare the treatment effects for each day*/;
	lsmeans treatment*day/sliceby=day pdiff lines;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 20:14:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Mann-Whitney-U-test/m-p/550401#M27501</guid>
      <dc:creator>bikashten</dc:creator>
      <dc:date>2019-04-11T20:14:59Z</dc:date>
    </item>
  </channel>
</rss>

