<?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: Logistic Regression with One Variable vs Multiple Variables in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357926#M18804</link>
    <description>&lt;P&gt;By including other potential predictors of Donor in the model, along with your BEC predictor, the resulting parameter estimate and odds ratio estimate for BEC tells you the effect of BEC after adjusting for the effects of the other predictors. &amp;nbsp;If some of the other predictors in the model are associated with the Donor response, this gives you a better idea of what the separate effect of BEC is after accounting for those other predictors. &amp;nbsp;As Rick says, the effect of BEC will obviously change if you change the other predictors&amp;nbsp;that are being adjusted for by adding or deleting predictors from the model.&lt;/P&gt;</description>
    <pubDate>Thu, 11 May 2017 14:51:25 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2017-05-11T14:51:25Z</dc:date>
    <item>
      <title>Logistic Regression with One Variable vs Multiple Variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357450#M18768</link>
      <description>&lt;P&gt;Attached is the cross tab of my dependent variable DONOR and independent variable BEC. If someone is in the BEC then they seem to donate 18.67 times more than if someone is not in the BEC. &amp;nbsp;I ran a logistic regression:&lt;/P&gt;&lt;P&gt;proc logistic data=work.work;&lt;BR /&gt;class BEC (ref='0');&lt;BR /&gt;model donor(event='1') = BEC;&lt;BR /&gt;run;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and came up with 18.67 odds ratio and a C statistic of .50&lt;/P&gt;&lt;P&gt;Then, I included 19 more variables and ran the logistic regression again. &amp;nbsp;This time, the odds ratio was .426 and the c statistic was .77.&lt;/P&gt;&lt;P&gt;Is something wrong with my model? It doesn't seem like .426 makes sense if you look at the cross tab.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for any help!&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13813i2624B524DC78CA79/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="cross tab.JPG" title="cross tab.JPG" /&gt;</description>
      <pubDate>Wed, 10 May 2017 12:48:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357450#M18768</guid>
      <dc:creator>mmagnuson</dc:creator>
      <dc:date>2017-05-10T12:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression with One Variable vs Multiple Variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357470#M18769</link>
      <description>&lt;P&gt;That is 2x2 contingency table, you should not put PROC LOGISTIC on this data, use PROC FREQ or CATMOD instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
 set sashelp.class;
 x=age&amp;gt;14;
run;
proc freq data=class;
 table sex*x/ relrisk riskdiff;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 May 2017 13:32:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357470#M18769</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-05-10T13:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression with One Variable vs Multiple Variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357472#M18770</link>
      <description>&lt;P&gt;Wouldn't proc logistic tell me the odds if &amp;nbsp;my dependent variable is binary = Donor (0/1) and then i have a dummy variable?&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2017 13:36:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357472#M18770</guid>
      <dc:creator>mmagnuson</dc:creator>
      <dc:date>2017-05-10T13:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression with One Variable vs Multiple Variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357477#M18772</link>
      <description>&lt;P&gt;If you only include one independent variable, that is called perfect predicted model.&lt;/P&gt;
&lt;P&gt;Model would not &amp;nbsp;be trusted .&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2017 13:50:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357477#M18772</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-05-10T13:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression with One Variable vs Multiple Variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357480#M18773</link>
      <description>&lt;P&gt;That makes sense since the c statistic was .50 which seems like a flip of a coin. &amp;nbsp;I added more variables and it showed an odds ratio of .426 which would mean that if someone was IN the BEC then they have .42 times less liklihood of being a donor. &amp;nbsp;Does this coincide with the cross tab referece though?&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2017 13:53:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357480#M18773</guid>
      <dc:creator>mmagnuson</dc:creator>
      <dc:date>2017-05-10T13:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression with One Variable vs Multiple Variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357483#M18775</link>
      <description>&lt;P&gt;These are very different models. If several of the other 19 variables are&amp;nbsp;correlated with BEC, they will explain much of the same variation as BEC. Also, when you include continuous variables, the odds ratio for BEC is now calculated at the mean value of the continuous variables. In short, you should not expect the odds ratio for BEC in the 20-variable model to match the odds ratio in the one-variable model.&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2017 14:08:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357483#M18775</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-05-10T14:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression with One Variable vs Multiple Variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357519#M18778</link>
      <description>&lt;P&gt;Ah this makes a lot of sense!! I took out two continuous variables and was left with only 18 binary variables and the output gave me 3.5 odds ratio which makes more sense. If i want to include continuous varibales in ivs' should I run a separate logistic regression model with only continuous iv?&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2017 15:11:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357519#M18778</guid>
      <dc:creator>mmagnuson</dc:creator>
      <dc:date>2017-05-10T15:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression with One Variable vs Multiple Variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357926#M18804</link>
      <description>&lt;P&gt;By including other potential predictors of Donor in the model, along with your BEC predictor, the resulting parameter estimate and odds ratio estimate for BEC tells you the effect of BEC after adjusting for the effects of the other predictors. &amp;nbsp;If some of the other predictors in the model are associated with the Donor response, this gives you a better idea of what the separate effect of BEC is after accounting for those other predictors. &amp;nbsp;As Rick says, the effect of BEC will obviously change if you change the other predictors&amp;nbsp;that are being adjusted for by adding or deleting predictors from the model.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2017 14:51:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-with-One-Variable-vs-Multiple-Variables/m-p/357926#M18804</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2017-05-11T14:51:25Z</dc:date>
    </item>
  </channel>
</rss>

