<?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: proc logistic with grouped variables in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/proc-logistic-with-grouped-variables/m-p/84958#M4146</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try adding the variable(s) into your class statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class BRANCH_LEVEL_AGG Regis_date avg_delay_l24m;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Aug 2012 16:18:19 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2012-08-07T16:18:19Z</dc:date>
    <item>
      <title>proc logistic with grouped variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-logistic-with-grouped-variables/m-p/84957#M4145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I am having some difficulties to use the proc logistic with my grouped variables. I first created new formats for my continuos variables and now I want them on the modell, I mean for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;value AVG_DELAY_L24Mgroup&amp;nbsp; low-0.5 = 'delay1'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.5-high = 'delay2';&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the frequency tables I have to specify, that I want the new format and so I did:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC FREQ data=score2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; TABLES&amp;nbsp; AVG_DELAY_L24M*bad_client;&lt;/P&gt;&lt;P&gt;&amp;nbsp; format AVG_DELAY_L24M AVG_DELAY_L24Mgroup.;&lt;/P&gt;&lt;P&gt;RUN; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok, untill here. But what should I do for the modell, I tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc logistic data = score2 descending;&lt;/P&gt;&lt;P&gt;format AVG_DELAY_L24M AVG_DELAY_L24Mgroup. Credit_limit Credit_limitgroup. DUR_CUST_REL DUR_CUST_RELgroup.;&lt;/P&gt;&lt;P&gt;class BRANCH_LEVEL_AGG Regis_date; &lt;/P&gt;&lt;P&gt;model bad_client = AVG_DELAY_L24M BRANCH_LEVEL_AGG Credit_limit DUR_CUST_REL;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the programm doesn't understand that I want the grouped variables and keep modelling with the original ones. How should I say to SAS what I want?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 12:10:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-logistic-with-grouped-variables/m-p/84957#M4145</guid>
      <dc:creator>danirecchia</dc:creator>
      <dc:date>2012-08-06T12:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic with grouped variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-logistic-with-grouped-variables/m-p/84958#M4146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try adding the variable(s) into your class statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class BRANCH_LEVEL_AGG Regis_date avg_delay_l24m;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2012 16:18:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-logistic-with-grouped-variables/m-p/84958#M4146</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-08-07T16:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic with grouped variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-logistic-with-grouped-variables/m-p/84959#M4147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Reeza, I solved writing the new variable format on the dataset:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;set scoring;&lt;/P&gt;&lt;P&gt;retain AVG_DELAY_L24M_cat;&lt;/P&gt;&lt;P&gt;AVG_DELAY_L24M_cat = put(AVG_DELAY_L24M,AVG_DELAY_L24Mgroup.);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 12:41:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-logistic-with-grouped-variables/m-p/84959#M4147</guid>
      <dc:creator>danirecchia</dc:creator>
      <dc:date>2012-08-09T12:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: proc logistic with grouped variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-logistic-with-grouped-variables/m-p/84960#M4148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should still add the new variable into your class statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 15:18:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-logistic-with-grouped-variables/m-p/84960#M4148</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-08-09T15:18:34Z</dc:date>
    </item>
  </channel>
</rss>

