<?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 Comparing Percentages between Treatment Groups in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706520#M34224</link>
    <description>&lt;P&gt;Hi there.&lt;/P&gt;&lt;P&gt;I had an experiment with 6 treatment groups (T1-T6). There were 96 animals in each treatment group (N=96). I want to compare the Mortality% between the 6 treatments statistically. The data are shown below. Could you please advise? Thank you!&lt;/P&gt;&lt;P&gt;Treatment&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Mortality%&lt;/P&gt;&lt;P&gt;T1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2.1%&lt;/P&gt;&lt;P&gt;T2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4.2%&lt;/P&gt;&lt;P&gt;T3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0%&lt;/P&gt;&lt;P&gt;T4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2.1%&lt;/P&gt;&lt;P&gt;T5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;7.3%&lt;/P&gt;&lt;P&gt;T6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4.2%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Dec 2020 04:05:53 GMT</pubDate>
    <dc:creator>Sharam</dc:creator>
    <dc:date>2020-12-17T04:05:53Z</dc:date>
    <item>
      <title>Comparing Percentages between Treatment Groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706520#M34224</link>
      <description>&lt;P&gt;Hi there.&lt;/P&gt;&lt;P&gt;I had an experiment with 6 treatment groups (T1-T6). There were 96 animals in each treatment group (N=96). I want to compare the Mortality% between the 6 treatments statistically. The data are shown below. Could you please advise? Thank you!&lt;/P&gt;&lt;P&gt;Treatment&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Mortality%&lt;/P&gt;&lt;P&gt;T1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2.1%&lt;/P&gt;&lt;P&gt;T2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4.2%&lt;/P&gt;&lt;P&gt;T3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0%&lt;/P&gt;&lt;P&gt;T4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2.1%&lt;/P&gt;&lt;P&gt;T5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;7.3%&lt;/P&gt;&lt;P&gt;T6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4.2%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 04:05:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706520#M34224</guid>
      <dc:creator>Sharam</dc:creator>
      <dc:date>2020-12-17T04:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Percentages between Treatment Groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706608#M34237</link>
      <description>&lt;P&gt;You could do a Chi-Squared test, and/or a Fisher's EXACT test, as shown. I am lazy and only typed the first three treatment groups.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
    input treatment $ died $ n;
    cards;
T1 Y 2
T1 N 94
T2 Y 4
T2 N 92
T3 N 96
;

proc freq data=have;
    tables treatment*died/chisq exact;
    weight n;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The Chi-squared test Prob is greater than 0.05, and in the Exact test the Pr&amp;lt;=P is also greater than 0.05, indicating no difference. If you run this on all 6 groups, you may get a different answer.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 12:40:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706608#M34237</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-12-17T12:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Percentages between Treatment Groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706628#M34239</link>
      <description>ANOVA or Kruskal-Wallis test ?</description>
      <pubDate>Thu, 17 Dec 2020 13:09:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706628#M34239</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-12-17T13:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Percentages between Treatment Groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706629#M34240</link>
      <description>&lt;A href="http://support.sas.com/kb/24/188.html" target="_blank"&gt;http://support.sas.com/kb/24/188.html&lt;/A&gt;</description>
      <pubDate>Thu, 17 Dec 2020 13:15:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706629#M34240</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-12-17T13:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing Percentages between Treatment Groups</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706818#M34248</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 22:35:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Comparing-Percentages-between-Treatment-Groups/m-p/706818#M34248</guid>
      <dc:creator>Sharam</dc:creator>
      <dc:date>2020-12-17T22:35:58Z</dc:date>
    </item>
  </channel>
</rss>

