<?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: Question about proc logistic and correlation between vars of input in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361697#M19011</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52605"&gt;@juanvg1972&lt;/a&gt; wrote:&lt;BR /&gt;Thanks, that works..., using selection=stepwise&lt;BR /&gt;One question...¿what is MLE and OLS?&lt;BR /&gt;Thanks again&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Maximum Likelihood Estimator&lt;/P&gt;
&lt;P&gt;Ordinary Least Squares&lt;/P&gt;</description>
    <pubDate>Thu, 25 May 2017 17:17:48 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2017-05-25T17:17:48Z</dc:date>
    <item>
      <title>Question about proc logistic and correlation between vars of input</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361309#M18969</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have a question about proc logistic.&lt;BR /&gt;I am creating a regresion logistic model with proc logistic.&lt;/P&gt;
&lt;P&gt;All the vars included in the model have dependencies with the target table.&lt;BR /&gt;Using proc freq or proc discrim I can see that there is a dependency&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I am exploring the vars, I find that there are vars highly correlated.&lt;BR /&gt;The vars rango_ant and rango_edad hace a correlation about 0.9&lt;/P&gt;
&lt;P&gt;Do I have to exclude one of them from my model?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is my model:&lt;/P&gt;
&lt;PRE&gt;proc logistic data=test outmodel=modelo1 plots(only)=roc;
class cod_posicion nivel_sal rango_edad rango_ant rango_eval;
model baja = rango_edad rango_ant nivel_sal rango_eval cod_posicion ;
quit;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do I have tu use cross effects?. Like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc logistic data=test outmodel=modelo1 plots(only)=roc;&lt;BR /&gt;class cod_posicion nivel_sal rango_edad rango_ant rango_eval;&lt;BR /&gt;model baja = rango_edad rango_ant nivel_sal rango_eval cod_posicion &lt;FONT color="#FF0000"&gt;rango_edad*rango_ant&lt;/FONT&gt; ;&lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc logistic data=test outmodel=modelo1 plots(only)=roc;
class cod_posicion nivel_sal rango_edad rango_ant rango_eval;
model baja = rango_edad rango_ant nivel_sal rango_eval cod_posicion rango_edad*rango_ant ;
quit;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know the effect of correlation in logistic regresion.&lt;BR /&gt;Can anybody help me?, any help will be greatly appreciated&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 18:31:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361309#M18969</guid>
      <dc:creator>juanvg1972</dc:creator>
      <dc:date>2017-05-24T18:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Question about proc logistic and correlation between vars of input</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361321#M18971</link>
      <description>&lt;P&gt;&lt;A href="https://statisticalhorizons.com/multicollinearity" target="_self"&gt;Paul Allison wrote a nice article about this topic. &lt;/A&gt;There are also many comments/responses posted to his article.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 18:51:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361321#M18971</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-05-24T18:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Question about proc logistic and correlation between vars of input</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361367#M18975</link>
      <description>&lt;P&gt;Thanks very much Rick....I dont understand how to apply the conclusion of the artcles to my case..., I thinks is another case&lt;/P&gt;
&lt;P&gt;Can anybodu hepl me?&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 19:50:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361367#M18975</guid>
      <dc:creator>juanvg1972</dc:creator>
      <dc:date>2017-05-24T19:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Question about proc logistic and correlation between vars of input</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361580#M18987</link>
      <description>&lt;P&gt;I don't know if the following was right, I read it from documentation.&lt;/P&gt;
&lt;P&gt;Logistic is fitted by MLE, therefore unlike OLS , MLE will automatically take into account multicollinear , and will drop the variable if it has high correaltion with other variables. So maybe you should use METHOD=STEPWISE to pick up the right variables.&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 13:15:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361580#M18987</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-05-25T13:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Question about proc logistic and correlation between vars of input</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361626#M19000</link>
      <description>Thanks, that works..., using selection=stepwise&lt;BR /&gt;One question...¿what is MLE and OLS?&lt;BR /&gt;Thanks again</description>
      <pubDate>Thu, 25 May 2017 14:31:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361626#M19000</guid>
      <dc:creator>juanvg1972</dc:creator>
      <dc:date>2017-05-25T14:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Question about proc logistic and correlation between vars of input</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361697#M19011</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52605"&gt;@juanvg1972&lt;/a&gt; wrote:&lt;BR /&gt;Thanks, that works..., using selection=stepwise&lt;BR /&gt;One question...¿what is MLE and OLS?&lt;BR /&gt;Thanks again&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Maximum Likelihood Estimator&lt;/P&gt;
&lt;P&gt;Ordinary Least Squares&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 17:17:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361697#M19011</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-05-25T17:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Question about proc logistic and correlation between vars of input</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361930#M19030</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;It is surpirsed to me. You also know statistical theory ? I think you are a seasoned sas programmer .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 11:59:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361930#M19030</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-05-26T11:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Question about proc logistic and correlation between vars of input</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361938#M19032</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I don't know if the following was right, I read it from documentation.&lt;/P&gt;
&lt;P&gt;Logistic is fitted by MLE, therefore unlike OLS , MLE will automatically take into account multicollinear , and will drop the variable if it has high correaltion with other variables. So maybe you should use METHOD=STEPWISE to pick up the right variables.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't agree with this at all. Stepwise has &lt;A href="https://www.google.com/#q=problems+with+stepwise+regression&amp;amp;spf=1495808579174" target="_self"&gt;many many bad properties&lt;/A&gt; that make it a poor choice for modelling. I also can't seem to get my head to believe that MLE is better than OLS in the case of multicollinearity, because the problem is actual a problem of logic rather than a problem of estimation method -- if the x-variables are confounded, then there is really no logical way to separate the effects of confounded variables into "un-confounded effects".&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 14:23:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Question-about-proc-logistic-and-correlation-between-vars-of/m-p/361938#M19032</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-05-26T14:23:32Z</dc:date>
    </item>
  </channel>
</rss>

