<?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: Selecting the right statistical test in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663974#M31649</link>
    <description>Agree. That is why I said " did not post the data yet "</description>
    <pubDate>Mon, 22 Jun 2020 12:52:14 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2020-06-22T12:52:14Z</dc:date>
    <item>
      <title>Selecting the right statistical test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663946#M31643</link>
      <description>&lt;P&gt;Hello!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry if my question seem basic but i am new to statistical analysis and would to ask which is the best test to determine association between variables and outcome if:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I have a small sample size ~15&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. 1 binary independent variable&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. A mixture of continuous and categorical dependent variables&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 10:56:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663946#M31643</guid>
      <dc:creator>duckypooh</dc:creator>
      <dc:date>2020-06-22T10:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting the right statistical test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663951#M31644</link>
      <description>&lt;P&gt;With a sample size of ~15, no test will have a lot of power.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For continuous dependent variables, I would use PROC GLM Analysis of Variance (assuming the errors are iid normal), and PROC NPAR1WAY otherwise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For categorical variables, I would use a contingency table in PROC FREQ and do the Chi-Squared test.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 11:38:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663951#M31644</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-06-22T11:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting the right statistical test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663952#M31645</link>
      <description>You didn't post your data yet ?&lt;BR /&gt;1) Fisher Exact Test  ?&lt;BR /&gt;proc freq;&lt;BR /&gt;table a*b/chisq fisher;&lt;BR /&gt;exact fisher;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2) Logistic Regression ?&lt;BR /&gt;proc logistic;&lt;BR /&gt;model y=&lt;BR /&gt;&lt;BR /&gt;3) General Linear Model ?&lt;BR /&gt;proc glm</description>
      <pubDate>Mon, 22 Jun 2020 11:40:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663952#M31645</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-06-22T11:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting the right statistical test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663971#M31648</link>
      <description>&lt;P&gt;One more choice, based on the small sample size, would be to use the EXACT option in PROC LOGISTIC.&amp;nbsp; However (and this is critical), you need to look at the cross tabulation of your results versus the categorical variables.&amp;nbsp; With this small sample size, you are almost certain to have what is called complete or partial separation.&amp;nbsp; I would suggest removing from the analysis any variables that show complete separation - you know what the outcome will be once you have the value of the independent categorical variable.&amp;nbsp; If you still run into partial separation issues, then you might consider using PROC GENMOD and the alternating logistic regression method outlined here0&lt;/P&gt;
&lt;P&gt;:&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_genmod_examples06.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_self"&gt;https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_genmod_examples06.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 12:39:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663971#M31648</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-06-22T12:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting the right statistical test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663974#M31649</link>
      <description>Agree. That is why I said " did not post the data yet "</description>
      <pubDate>Mon, 22 Jun 2020 12:52:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663974#M31649</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-06-22T12:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting the right statistical test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663975#M31650</link>
      <description>One more thing, &lt;BR /&gt;OP said ASSOCIATION not CORRELATION , Therefore that is bring me into contingency table analysis .</description>
      <pubDate>Mon, 22 Jun 2020 12:53:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663975#M31650</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-06-22T12:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting the right statistical test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663994#M31652</link>
      <description>&lt;P&gt;Good point&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;.for the categorical variables.&amp;nbsp; I guess I got caught up in the continuous side, where modeling makes some sense, even with a sample size as small as this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 14:20:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/663994#M31652</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-06-22T14:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting the right statistical test</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/664000#M31653</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/332933"&gt;@duckypooh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry if my question seem basic but i am new to statistical analysis and would to ask which is the best test to determine association between variables and outcome if:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. I have a small sample size ~15&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. 1 binary independent variable&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. A mixture of continuous and categorical dependent variables&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TIA!&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What type of research question is to be answered? Question will point towards choice of test(s).&lt;/P&gt;
&lt;P&gt;Are your categorical variables possibly ordinal? That means an order could be determined "Bad neutral Good" as apposed to simple category " Fred Orange XYZZY"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 14:47:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Selecting-the-right-statistical-test/m-p/664000#M31653</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-06-22T14:47:29Z</dc:date>
    </item>
  </channel>
</rss>

