<?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: Finding a cutoff value in multivariate logistic regression? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Finding-a-cutoff-value-in-multivariate-logistic-regression/m-p/938177#M46807</link>
    <description>Here is a special macro for that purpose .&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/25/018.html" target="_blank"&gt;https://support.sas.com/kb/25/018.html&lt;/A&gt;</description>
    <pubDate>Sun, 04 Aug 2024 00:36:00 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2024-08-04T00:36:00Z</dc:date>
    <item>
      <title>Finding a cutoff value in multivariate logistic regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Finding-a-cutoff-value-in-multivariate-logistic-regression/m-p/282939#M14906</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need advice: I am trying to find cutoffs in a multivariate logistic regression model composed of a categorical predictor and several continuous variables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC LOGISTIC DATA=work.sdcrossvalid OUTEST=_SNSP_EST;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CLASS Bleed;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MODEL Outcome(event='1')=&lt;/P&gt;&lt;P&gt;Age_yr_&amp;nbsp;&lt;/P&gt;&lt;P&gt;PR&amp;nbsp;&lt;/P&gt;&lt;P&gt;Plt&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sr_Creat&amp;nbsp;&lt;/P&gt;&lt;P&gt;AST&amp;nbsp;&lt;/P&gt;&lt;P&gt;ALT&amp;nbsp;&lt;/P&gt;&lt;P&gt;HCO3&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lactate &amp;nbsp;&lt;/P&gt;&lt;P&gt;Bleed/ EXPB ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To determine the cutoff value, I use the following formula:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;X_value = (Logit - intercept)/(Sum of estimates of all predictor variables), as adapted from:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ref: Paper 231-2008&amp;nbsp;&lt;/P&gt;&lt;P&gt;A Macro For Getting More Out Of Your ROC Curve:&lt;/P&gt;&lt;P&gt;X_VALUE = (LOG(_PROB_/(&lt;STRONG&gt;1&lt;/STRONG&gt;-_PROB_))-INTERCEPT)/&amp;amp;XVAR&amp;nbsp;&lt;/P&gt;&lt;P&gt;This paper only refer to a single continuous variable. What if you have several?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is my denominator (Sum of estimates of all predictor variables)&amp;nbsp;correct?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2016 12:54:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Finding-a-cutoff-value-in-multivariate-logistic-regression/m-p/282939#M14906</guid>
      <dc:creator>Dcicantab5</dc:creator>
      <dc:date>2016-07-08T12:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Finding a cutoff value in multivariate logistic regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Finding-a-cutoff-value-in-multivariate-logistic-regression/m-p/283119#M14914</link>
      <description>&lt;PRE&gt;

If you have multiple levels for Y , that would lead you to two kind of logistic model:
1) cumulative logistic
2)generalize logistic


The cutoff value means nothing for these two kind of model.
If it is binary logistic model, CTABLE could give you a good vision to cutoff value.


proc logistic data=sashelp.class;
model sex=age weight height/ctable;
run;


&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 Jul 2016 06:18:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Finding-a-cutoff-value-in-multivariate-logistic-regression/m-p/283119#M14914</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-07-09T06:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Finding a cutoff value in multivariate logistic regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Finding-a-cutoff-value-in-multivariate-logistic-regression/m-p/938163#M46805</link>
      <description>Thanks for sharing the code lines and this is what I intend to learn today.</description>
      <pubDate>Sat, 03 Aug 2024 09:16:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Finding-a-cutoff-value-in-multivariate-logistic-regression/m-p/938163#M46805</guid>
      <dc:creator>TomHsiung</dc:creator>
      <dc:date>2024-08-03T09:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Finding a cutoff value in multivariate logistic regression?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Finding-a-cutoff-value-in-multivariate-logistic-regression/m-p/938177#M46807</link>
      <description>Here is a special macro for that purpose .&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/25/018.html" target="_blank"&gt;https://support.sas.com/kb/25/018.html&lt;/A&gt;</description>
      <pubDate>Sun, 04 Aug 2024 00:36:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Finding-a-cutoff-value-in-multivariate-logistic-regression/m-p/938177#M46807</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-08-04T00:36:00Z</dc:date>
    </item>
  </channel>
</rss>

