<?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 P-value and 95% CI disagreement in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615070#M29677</link>
    <description>&lt;P&gt;Using SAS 9.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran the following code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC LOGISTIC DATA =have;&lt;BR /&gt;CLASS tertile (REF = '0') ;&lt;BR /&gt;MODEL infection (event= 'Yes')= tertile / stb;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have binary infection variable and tertile is categorical with 3 levels.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is when running this code it returned a p-value of 0.04 and an OR 7.1 and a 95% CI of&amp;nbsp;(0.874, 58.689). Can this be correct to have an CI that includes 1 and a significant p-value?&amp;nbsp;&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="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35133i4FFBA56D83C94383/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 03 Jan 2020 20:46:55 GMT</pubDate>
    <dc:creator>GS2</dc:creator>
    <dc:date>2020-01-03T20:46:55Z</dc:date>
    <item>
      <title>P-value and 95% CI disagreement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615070#M29677</link>
      <description>&lt;P&gt;Using SAS 9.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran the following code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC LOGISTIC DATA =have;&lt;BR /&gt;CLASS tertile (REF = '0') ;&lt;BR /&gt;MODEL infection (event= 'Yes')= tertile / stb;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have binary infection variable and tertile is categorical with 3 levels.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is when running this code it returned a p-value of 0.04 and an OR 7.1 and a 95% CI of&amp;nbsp;(0.874, 58.689). Can this be correct to have an CI that includes 1 and a significant p-value?&amp;nbsp;&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="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35133i4FFBA56D83C94383/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2020 20:46:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615070#M29677</guid>
      <dc:creator>GS2</dc:creator>
      <dc:date>2020-01-03T20:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: P-value and 95% CI disagreement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615076#M29678</link>
      <description>&lt;P&gt;Did you notice that the Type 3 Test shows that the main effect (Tertile) is not significant for predicting Infection?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2020 21:21:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615076#M29678</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-01-03T21:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: P-value and 95% CI disagreement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615077#M29679</link>
      <description>&lt;P&gt;Try adding option CLPARM=BOTH to the model statement. From proc logistic documentation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;There are two methods of computing confidence intervals for the regression parameters. One is based on the profile-likelihood function, and the other is based on the asymptotic normality of the parameter estimators. The latter is not as time-consuming as the former, because it does not involve an iterative scheme; &lt;FONT color="#008080"&gt;however, it is not thought to be as accurate as the former, especially with small sample size&lt;/FONT&gt;.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2020 21:22:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615077#M29679</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-01-03T21:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: P-value and 95% CI disagreement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615080#M29680</link>
      <description>&lt;P&gt;I saw that which was why I was wondering that the individual tertile is showing significance. Should I have used a wald test in this situation? Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2020 21:25:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615080#M29680</guid>
      <dc:creator>GS2</dc:creator>
      <dc:date>2020-01-03T21:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: P-value and 95% CI disagreement</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615376#M29681</link>
      <description>&lt;P&gt;Different things are being compared. See &lt;A href="http://support.sas.com/kb/36478" target="_self"&gt;this note&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2020 16:04:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/P-value-and-95-CI-disagreement/m-p/615376#M29681</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2020-01-06T16:04:45Z</dc:date>
    </item>
  </channel>
</rss>

