<?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: Can proc logistic deal with continuous response regression? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776186#M38030</link>
    <description>&lt;P&gt;PROC NLIN is pretty much suited for this.&amp;nbsp; Do a google search on "four parameter logistic model" and you should find several examples, some with code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
    <pubDate>Mon, 25 Oct 2021 13:07:18 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2021-10-25T13:07:18Z</dc:date>
    <item>
      <title>Can proc logistic deal with continuous response regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776137#M38026</link>
      <description>&lt;P&gt;I read this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"logistic regression describes the relationship between a categorical response variable and a set of predictor variables.&amp;nbsp;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;here:&lt;A href="https://stats.idre.ucla.edu/unlinked/sas-logistic/proc-logistic-and-logistic-regression-models/" target="_blank"&gt;Proc Logistic and Logistic Regression Models (ucla.edu)&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But&amp;nbsp;theoretically, a logistic regression is continuous function, why not continuous input for the model? I tried do this, but all my values of the respond variable are transited into a kind of categories, which is upset...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, Can proc logistic deal with continuous response regression?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 07:49:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776137#M38026</guid>
      <dc:creator>kimmygzc</dc:creator>
      <dc:date>2021-10-25T07:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can proc logistic deal with continuous response regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776162#M38027</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/397901"&gt;@kimmygzc&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I read this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"logistic regression describes the relationship between a categorical response variable and a set of predictor variables.&amp;nbsp;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;here:&lt;A href="https://stats.idre.ucla.edu/unlinked/sas-logistic/proc-logistic-and-logistic-regression-models/" target="_blank" rel="noopener"&gt;Proc Logistic and Logistic Regression Models (ucla.edu)&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But&amp;nbsp;theoretically, a logistic regression is continuous function, why not continuous input for the model? I tried do this, but all my values of the respond variable are transited into a kind of categories, which is upset...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, Can proc logistic deal with continuous response regression?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;PROC REG performs regression on continuous responses. Although PROC LOGISTIC creates continuous predictions, it cannot have continuous response variable values. Another difference is that PROC REG will make predictions in the range negative infinity to positive infinity, while PROC LOGISTIC will make predictions in the range of 0 to 1.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 10:38:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776162#M38027</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-10-25T10:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can proc logistic deal with continuous response regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776165#M38028</link>
      <description>&lt;P&gt;Thanks for your reply, Sir.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried proc reg but only in linear regression, and read about pro nlin. Both have complex parameters to configure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking for a method to do logistic regression with y range [0, +inf), where y is a continuous response variable but not a probability.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have anything recommend?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 10:45:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776165#M38028</guid>
      <dc:creator>kimmygzc</dc:creator>
      <dc:date>2021-10-25T10:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can proc logistic deal with continuous response regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776167#M38029</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/397901"&gt;@kimmygzc&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried proc reg but only in linear regression, and read about pro nlin. Both have complex parameters to configure.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;As far as I know, there are no complex parameters to configure in PROC REG. Can you be specific what "complex parameter" you are talking about?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;I'm looking for a method to do logistic regression with y range [0, +inf), where y is a continuous response variable but not a probability.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What about this is "logistic"?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are other SAS PROCs that will fit models of the range [0, +inf), such as PROC GLIMMIX, but to get this to work, you have to specify the distribution of the continuous Y variable, and then you also have to pick a distribution that spans the range [0, +inf). For PROC GLIMMIX, you can see the list of possible distributions here:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glimmix_syntax17.htm#statug.glimmix.gmxmoddist" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glimmix_syntax17.htm#statug.glimmix.gmxmoddist&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 11:04:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776167#M38029</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-10-25T11:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Can proc logistic deal with continuous response regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776186#M38030</link>
      <description>&lt;P&gt;PROC NLIN is pretty much suited for this.&amp;nbsp; Do a google search on "four parameter logistic model" and you should find several examples, some with code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 25 Oct 2021 13:07:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776186#M38030</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2021-10-25T13:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Can proc logistic deal with continuous response regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776415#M38031</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;&amp;nbsp;Can proc logistic deal with continuous response regression?&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC LOGISTIC can fit a response variable that is a proportion in the interval [0,1].&amp;nbsp; &amp;nbsp;The most familiar proportion model is the binomial model, which uses the event/trial syntax. However, as Steve says, there are other models for fitting proportions. See this note:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/kb/22/871.html" target="_self"&gt;Usage Note 22871: Types of logistic (or logit) models that can be fit using SAS&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The note discusses many logistic-type models, including the 4- and 5-parameter models mentioned by Steve.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you fitting survival/failure data? There are various models in survival analysis that have "logistic" in their name. See &lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_013/statug/statug_lifereg_details04.htm#statug_lifereg004092" target="_self"&gt;the documentation for the LIFEREG procedure.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you provide example data and the model you are trying to fit, it will be easier to help you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Oct 2021 09:57:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Can-proc-logistic-deal-with-continuous-response-regression/m-p/776415#M38031</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-10-26T09:57:40Z</dc:date>
    </item>
  </channel>
</rss>

