<?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 Type 3 Analysis of Effect in Logistic  Regression in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Type-3-Analysis-of-Effect-in-Logistic-Regression/m-p/670736#M32039</link>
    <description>&lt;P&gt;&lt;SPAN&gt;In &lt;STRONG&gt;Testing interaction effect for logistic regression. &lt;/STRONG&gt;Can someone explain me following output. specially "the Type 3 Analysis of effect". I would like to know that PSA*ethnic interaction is statistically significant or not. If it is significant then why and if not then why not ? The following ouput is created using PROC logistic as below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As per study lesson it says that&amp;nbsp;PSA*ethnic interaction is statistically significant (p=0.07) but as per my understanding p-value should be less than 0.05 to be consider as&amp;nbsp;statistically significant. May be i am interpreting it wrong.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I appreciate if someone can explain me where i am interpreting&amp;nbsp;it wrong.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=prostate plots(only)=(effect(x=(psa) sliceby=ethnic)
oddsratio (type=horizontalstat));
class ethnic(param=ref ref="black");
model capsule (event="1") = psa ethnic psa*ethnic;
unit psa = 10;
oddsratio 'psa 50 vs 40 for black' psa/at(ethnic="black" psa=40) cl=pl;
oddsratio 'psa 50 vs 40 for white' psa/at(ethnic="white" psa=40) cl=pl;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PSA.PNG" style="width: 843px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47356i1B3D3BDD1F585E4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="PSA.PNG" alt="PSA.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jul 2020 17:54:08 GMT</pubDate>
    <dc:creator>unnati</dc:creator>
    <dc:date>2020-07-20T17:54:08Z</dc:date>
    <item>
      <title>Type 3 Analysis of Effect in Logistic  Regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Type-3-Analysis-of-Effect-in-Logistic-Regression/m-p/670736#M32039</link>
      <description>&lt;P&gt;&lt;SPAN&gt;In &lt;STRONG&gt;Testing interaction effect for logistic regression. &lt;/STRONG&gt;Can someone explain me following output. specially "the Type 3 Analysis of effect". I would like to know that PSA*ethnic interaction is statistically significant or not. If it is significant then why and if not then why not ? The following ouput is created using PROC logistic as below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As per study lesson it says that&amp;nbsp;PSA*ethnic interaction is statistically significant (p=0.07) but as per my understanding p-value should be less than 0.05 to be consider as&amp;nbsp;statistically significant. May be i am interpreting it wrong.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I appreciate if someone can explain me where i am interpreting&amp;nbsp;it wrong.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=prostate plots(only)=(effect(x=(psa) sliceby=ethnic)
oddsratio (type=horizontalstat));
class ethnic(param=ref ref="black");
model capsule (event="1") = psa ethnic psa*ethnic;
unit psa = 10;
oddsratio 'psa 50 vs 40 for black' psa/at(ethnic="black" psa=40) cl=pl;
oddsratio 'psa 50 vs 40 for white' psa/at(ethnic="white" psa=40) cl=pl;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PSA.PNG" style="width: 843px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47356i1B3D3BDD1F585E4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="PSA.PNG" alt="PSA.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 17:54:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Type-3-Analysis-of-Effect-in-Logistic-Regression/m-p/670736#M32039</guid>
      <dc:creator>unnati</dc:creator>
      <dc:date>2020-07-20T17:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Type 3 Analysis of Effect in Logistic  Regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Type-3-Analysis-of-Effect-in-Logistic-Regression/m-p/670738#M32040</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;as per my understanding p-value should be less than 0.05 to be consider as&amp;nbsp;statistically significant.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Your p-value should be less than your cutoff which is typically 0.05 but can also be a different number so it actually depends &lt;STRONG&gt;on exactly how the question was phrased&lt;/STRONG&gt;. If it said alpha was 0.1 then the statement it is statistically significant would be correct. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/3676"&gt;@unnati&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;In &lt;STRONG&gt;Testing interaction effect for logistic regression. &lt;/STRONG&gt;Can someone explain me following output. specially "the Type 3 Analysis of effect". I would like to know that PSA*ethnic interaction is statistically significant or not. If it is significant then why and if not then why not ? The following ouput is created using PROC logistic as below:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As per study lesson it says that&amp;nbsp;PSA*ethnic interaction is statistically significant (p=0.07) but as per my understanding p-value should be less than 0.05 to be consider as&amp;nbsp;statistically significant. May be i am interpreting it wrong.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I appreciate if someone can explain me where i am interpreting&amp;nbsp;it wrong.&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=prostate plots(only)=(effect(x=(psa) sliceby=ethnic)
oddsratio (type=horizontalstat));
class ethnic(param=ref ref="black");
model capsule (event="1") = psa ethnic psa*ethnic;
unit psa = 10;
oddsratio 'psa 50 vs 40 for black' psa/at(ethnic="black" psa=40) cl=pl;
oddsratio 'psa 50 vs 40 for white' psa/at(ethnic="white" psa=40) cl=pl;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PSA.PNG" style="width: 843px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47356i1B3D3BDD1F585E4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="PSA.PNG" alt="PSA.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;/LI-SPOILER&gt;</description>
      <pubDate>Mon, 20 Jul 2020 18:00:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Type-3-Analysis-of-Effect-in-Logistic-Regression/m-p/670738#M32040</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-07-20T18:00:30Z</dc:date>
    </item>
  </channel>
</rss>

