<?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: testing normality in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547478#M151722</link>
    <description>&lt;P&gt;If your class variable has only two levels , TTest is good enough,&lt;/P&gt;
&lt;P&gt;If you worry about whether rate is normal distribution or not, then&amp;nbsp;&lt;SPAN&gt;wilcoxom rank sum test is better choice.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 31 Mar 2019 12:51:52 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2019-03-31T12:51:52Z</dc:date>
    <item>
      <title>testing normality</title>
      <link>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547462#M151710</link>
      <description>&lt;P&gt;I have 2 variables&amp;nbsp;&amp;nbsp; male, female&lt;/P&gt;&lt;P&gt;and mortality rate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use proc ttest to test the NULL&lt;/P&gt;&lt;P&gt;do I use proc mix to test for normality&lt;/P&gt;&lt;P&gt;and If normality is broken then we need to use the willcoxon rank sum test?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you help me with the order.&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;below is my code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;F test;&lt;BR /&gt;proc ttest data = Project;&lt;BR /&gt;class sex;&lt;BR /&gt;where sex in ("f" "m");&lt;BR /&gt;var rate;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*check residue for&amp;nbsp;normality;&lt;BR /&gt;proc mixed data = Project;&lt;BR /&gt;class sex;&lt;BR /&gt;where sex in ("f" "m");&lt;BR /&gt;model rate = sex/residual;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*wilcoxom rank sum;&lt;BR /&gt;proc npar1way data = Project&amp;nbsp; wilcoxon;&lt;BR /&gt;class sex;&lt;BR /&gt;where sex in ("f" "m");&lt;BR /&gt;var rate;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not need to do a tukey test for pair. right?&lt;/P&gt;&lt;P&gt;* Tukey;&lt;BR /&gt;proc glm data=project;&lt;BR /&gt;class sex;&lt;BR /&gt;where sex in ("f" "m");&lt;BR /&gt;model rate = sex / solution;&lt;BR /&gt;means sex / tukey;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Mar 2019 03:03:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547462#M151710</guid>
      <dc:creator>ralphbenno</dc:creator>
      <dc:date>2019-03-31T03:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: testing normality</title>
      <link>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547464#M151712</link>
      <description>T-Test is fairly resilient into devotions from normality, usually it's more important to ensure that the distribution is the same between the variables. This is more true as N gets larger.</description>
      <pubDate>Sun, 31 Mar 2019 03:15:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547464#M151712</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-03-31T03:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: testing normality</title>
      <link>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547465#M151713</link>
      <description>&lt;P&gt;then if I use proc ttest, I do not need to do proc mixed test?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Mar 2019 03:18:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547465#M151713</guid>
      <dc:creator>ralphbenno</dc:creator>
      <dc:date>2019-03-31T03:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: testing normality</title>
      <link>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547467#M151714</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/260928"&gt;@ralphbenno&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;then if I use proc ttest, I do not need to do proc mixed test?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I've never used PROC MIXED so no idea.&lt;/P&gt;</description>
      <pubDate>Sun, 31 Mar 2019 04:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547467#M151714</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-03-31T04:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: testing normality</title>
      <link>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547478#M151722</link>
      <description>&lt;P&gt;If your class variable has only two levels , TTest is good enough,&lt;/P&gt;
&lt;P&gt;If you worry about whether rate is normal distribution or not, then&amp;nbsp;&lt;SPAN&gt;wilcoxom rank sum test is better choice.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Mar 2019 12:51:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/testing-normality/m-p/547478#M151722</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-03-31T12:51:52Z</dc:date>
    </item>
  </channel>
</rss>

