<?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: RESTRICT STATEMENT FOR PROC LOGISTIC in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/RESTRICT-STATEMENT-FOR-PROC-LOGISTIC/m-p/652916#M31382</link>
    <description>&lt;P&gt;It may help someone that knows more about this procedure and options than I do if you post the code of what your are currently doing and then discuss things in terms of the actual variable names that appear in your code, letting use know which variable needs to be "restricted" and how.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That way someone else may be able to modify the code to get what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would think this would be two different models =&amp;gt; model statements=&amp;gt; two calls to proc logistic.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jun 2020 15:36:27 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2020-06-03T15:36:27Z</dc:date>
    <item>
      <title>RESTRICT STATEMENT FOR PROC LOGISTIC</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/RESTRICT-STATEMENT-FOR-PROC-LOGISTIC/m-p/652893#M31379</link>
      <description>&lt;P&gt;Good morning,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a question, and was wondering if someone could lend a hand.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running a competing risk model (default risk and prepayment risk) using proc logistic via SAS EG (7.15 7.100.5.5850 64-bit).&amp;nbsp; I have one set of covariates, or right-hand side variables,&amp;nbsp;for both risks.&amp;nbsp; However, I need some flexibility.&amp;nbsp; That is,&amp;nbsp;I would like to restrict (i.e., omit) one&amp;nbsp;covariate from this set of covariates in predicting one of the&amp;nbsp;risks.&amp;nbsp; For instance, the covariate 'incentive to refinance a mortgage' is driven by mortgage&amp;nbsp;rates and does not help explain default.&amp;nbsp; As a result, I would like to 'turn off' the 'incentive to refinance&amp;nbsp;a mortgage' covariate in predicting mortgage default.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently, I am exploring&amp;nbsp;the restrict statement, but I have not seen as of yet, an application of this statement applied to proc logistic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any assistance would be much appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 14:50:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/RESTRICT-STATEMENT-FOR-PROC-LOGISTIC/m-p/652893#M31379</guid>
      <dc:creator>davis</dc:creator>
      <dc:date>2020-06-03T14:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: RESTRICT STATEMENT FOR PROC LOGISTIC</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/RESTRICT-STATEMENT-FOR-PROC-LOGISTIC/m-p/652916#M31382</link>
      <description>&lt;P&gt;It may help someone that knows more about this procedure and options than I do if you post the code of what your are currently doing and then discuss things in terms of the actual variable names that appear in your code, letting use know which variable needs to be "restricted" and how.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That way someone else may be able to modify the code to get what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would think this would be two different models =&amp;gt; model statements=&amp;gt; two calls to proc logistic.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 15:36:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/RESTRICT-STATEMENT-FOR-PROC-LOGISTIC/m-p/652916#M31382</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-06-03T15:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: RESTRICT STATEMENT FOR PROC LOGISTIC</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/RESTRICT-STATEMENT-FOR-PROC-LOGISTIC/m-p/652918#M31383</link>
      <description>&lt;P&gt;Part 1: I can't find anything in the documentation about a RESTRICT statement for PROC LOGISTIC, so anything like that has to be handled through options, like defining an offset function..&lt;/P&gt;
&lt;P&gt;Part 2: Part 1 probably will run into problems defining the coefficient as zero, as the offset is fixed for each observation (coefficient=1).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;About the only way I can think of doing this is to use something like PROC NLIN or PROC NLMIXED where you can program around this.&amp;nbsp; It would take some time to kludge up something, as the fitting of two models where one drops an effect is pretty easy, but welding the two results together within a single matrix framework to enable testing seems difficult for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 15:46:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/RESTRICT-STATEMENT-FOR-PROC-LOGISTIC/m-p/652918#M31383</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-06-03T15:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: RESTRICT STATEMENT FOR PROC LOGISTIC</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/RESTRICT-STATEMENT-FOR-PROC-LOGISTIC/m-p/652941#M31385</link>
      <description>&lt;P&gt;Why not simply remove that variable from the model for default? Assuming that's what you mean by "turn off". If you can to fix its coefficient to a particular value, c, then create a variable that is c*incentive and specify it in the OFFSET= option. See&lt;A href="http://support.sas.com/kb/22800" target="_self"&gt; this note&lt;/A&gt; for general information on restricting some or all model predictors in many procedures.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2020 16:53:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/RESTRICT-STATEMENT-FOR-PROC-LOGISTIC/m-p/652941#M31385</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2020-06-03T16:53:20Z</dc:date>
    </item>
  </channel>
</rss>

