<?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 Quantitative vs Classification variables in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/356049#M18669</link>
    <description>&lt;P&gt;From the info above my code is the following: Where would the var ref=1 go? &amp;nbsp;I tired before the i.v.s and after the i.v.s in the first line but it errored. (also I Bolded the variables for clarification purposes)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC LOGISTIC DATA=WORK.SORTTempTableSorted&lt;BR /&gt;PLOTS(ONLY)=ALL&lt;BR /&gt;;&lt;BR /&gt;CLASS&lt;STRONG&gt; BEC&lt;/STRONG&gt; (PARAM=REF) "&lt;STRONG&gt;Marital Status&lt;/STRONG&gt;"n (PARAM=REF) &lt;STRONG&gt;Gender&lt;/STRONG&gt; (PARAM=REF);&lt;BR /&gt;MODEL Donor (Event = '1')=BEC "Marital Status"n Gender /&lt;BR /&gt;SELECTION=NONE&lt;BR /&gt;AGGREGATE SCALE=NONE&lt;BR /&gt;RSQUARE&lt;BR /&gt;LINK=LOGIT&lt;BR /&gt;CLPARM=WALD&lt;BR /&gt;CLODDS=WALD&lt;BR /&gt;ALPHA=0.05&lt;BR /&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
    <pubDate>Thu, 04 May 2017 17:16:01 GMT</pubDate>
    <dc:creator>mmagnuson</dc:creator>
    <dc:date>2017-05-04T17:16:01Z</dc:date>
    <item>
      <title>Logistic Regression Quantitative vs Classification variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/355985#M18662</link>
      <description>&lt;P&gt;When running a logistic regresssion model there is an option of Quantitative Variables and Classification Variables. &amp;nbsp;If variable such as Male/Female has values of 1/0 respectively, should it go under quantitatvie variables since it is a number or classification variables since it is binary?&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 14:35:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/355985#M18662</guid>
      <dc:creator>mmagnuson</dc:creator>
      <dc:date>2017-05-04T14:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression Quantitative vs Classification variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/355995#M18663</link>
      <description>&lt;P&gt;I'd put it under CLASS because then the output is exactly the way I want it, and it's a categorical variable so that's clear to myself and everyone else.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, since it's coded 0/1 it's unlikely to matter, IF you're using Referential coding for your categorical/classification variables.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF you're using GLM coding for your parameters then this is not true and you must include it on the CLASS statement.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 14:59:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/355995#M18663</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-05-04T14:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression Quantitative vs Classification variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/356040#M18666</link>
      <description>&lt;P&gt;I went ahead and put it under CLASS with Reference coding style. &amp;nbsp;In the output it showed the MLEs for only the 0 value. To interpret this would it be the 0 value has a negative estimate which would mean that the 1 value would then be a positive estimate? Just making sure I understand this completely.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13778i555CE66F05839ED9/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="output.jpg" title="output.jpg" /&gt;</description>
      <pubDate>Thu, 04 May 2017 16:44:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/356040#M18666</guid>
      <dc:creator>mmagnuson</dc:creator>
      <dc:date>2017-05-04T16:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression Quantitative vs Classification variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/356046#M18667</link>
      <description>&lt;P&gt;Thats what the REF option is for&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;class var (ref=1)&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 17:06:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/356046#M18667</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-05-04T17:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression Quantitative vs Classification variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/356049#M18669</link>
      <description>&lt;P&gt;From the info above my code is the following: Where would the var ref=1 go? &amp;nbsp;I tired before the i.v.s and after the i.v.s in the first line but it errored. (also I Bolded the variables for clarification purposes)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC LOGISTIC DATA=WORK.SORTTempTableSorted&lt;BR /&gt;PLOTS(ONLY)=ALL&lt;BR /&gt;;&lt;BR /&gt;CLASS&lt;STRONG&gt; BEC&lt;/STRONG&gt; (PARAM=REF) "&lt;STRONG&gt;Marital Status&lt;/STRONG&gt;"n (PARAM=REF) &lt;STRONG&gt;Gender&lt;/STRONG&gt; (PARAM=REF);&lt;BR /&gt;MODEL Donor (Event = '1')=BEC "Marital Status"n Gender /&lt;BR /&gt;SELECTION=NONE&lt;BR /&gt;AGGREGATE SCALE=NONE&lt;BR /&gt;RSQUARE&lt;BR /&gt;LINK=LOGIT&lt;BR /&gt;CLPARM=WALD&lt;BR /&gt;CLODDS=WALD&lt;BR /&gt;ALPHA=0.05&lt;BR /&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 17:16:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/356049#M18669</guid>
      <dc:creator>mmagnuson</dc:creator>
      <dc:date>2017-05-04T17:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Logistic Regression Quantitative vs Classification variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/356058#M18670</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/142148"&gt;@mmagnuson&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I went ahead and put it under CLASS with Reference coding style. &amp;nbsp;In the output it showed the MLEs for only the 0 value. To interpret this would it be the 0 value has a negative estimate which would mean that the 1 value would then be a positive estimate? Just making sure I understand this completely.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't think&amp;nbsp;this is correct.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A referential estimate means it's set as the baseline, the estimate is then essentially a component of the intercept.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe this can clarify it:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://stats.idre.ucla.edu/other/mult-pkg/faq/general/faqwhat-is-dummy-coding/" target="_blank"&gt;http://stats.idre.ucla.edu/other/mult-pkg/faq/general/faqwhat-is-dummy-coding/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 17:48:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Logistic-Regression-Quantitative-vs-Classification-variables/m-p/356058#M18670</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-05-04T17:48:22Z</dc:date>
    </item>
  </channel>
</rss>

