<?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: determine significant cut-off points in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79626#M3803</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Proficiency should decrease smoothly with increasing absence, you can request to estimate the absence level for different proficiency tresholds with PROC PROBIT. Something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc probit data=myData plot=predplot;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;class passFail;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;model passFail = absence / lackfit inversecl;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Jul 2013 01:24:33 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2013-07-16T01:24:33Z</dc:date>
    <item>
      <title>determine significant cut-off points</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79624#M3801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to determine the relationship between student absent days and their proficiency level. I want to know at what point/percentile of absence days would there be a significant proficiency change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, the proficiency can be binomial (pass, fail), the absent days level can be a continuous variable at range of 0%-100%. What would be the best steps to determine the cut-off point for absent days level where you can see the most significant change in proficiency?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think 'proc logistic' would fit the problem but I'm not sure how to get the right cut-off point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas or comments will be much appreciated! &lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2013 21:02:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79624#M3801</guid>
      <dc:creator>ShawnZ</dc:creator>
      <dc:date>2013-07-15T21:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: determine significant cut-off points</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79625#M3802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it's more like a CART with only one predictor.&amp;nbsp; &lt;/P&gt;&lt;P&gt;I don't know how to implement that in BASE SAS though. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2013 21:10:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79625#M3802</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-07-15T21:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: determine significant cut-off points</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79626#M3803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Proficiency should decrease smoothly with increasing absence, you can request to estimate the absence level for different proficiency tresholds with PROC PROBIT. Something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc probit data=myData plot=predplot;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;class passFail;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;model passFail = absence / lackfit inversecl;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jul 2013 01:24:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79626#M3803</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-07-16T01:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: determine significant cut-off points</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79627#M3804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The MODEL statement of PROC LOGISTIC has a CTABLE option that estimates and prints the sensitivity, the specificity, the percent false positives, and the percent false negatives at each cutpoint of the probability predicted from the model.&amp;nbsp; The OUTPUT statement can write these predicted probabilities corresponding to each level of absence day.&amp;nbsp; Therefore, you can appreciate the trade-offs at different cutpoints of the predicted probabilities.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jul 2013 12:45:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79627#M3804</guid>
      <dc:creator>1zmm</dc:creator>
      <dc:date>2013-07-16T12:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: determine significant cut-off points</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79628#M3805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all, that was very helpful!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried both PG and 1zmm's methods. They both worked great. IMO I think PROC PROBIT provide a clearer result to me as well as nice probability plot. Although I think &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px; background-color: #ffffff;"&gt;PROC LOGISTIC&lt;/SPAN&gt; can do probability plot as well, using ESTPROB option maybe?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also find that specify certain cut-off point in &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;CONTRAST in &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px; background-color: #ffffff;"&gt;PROC LOGISTIC&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; can also be helpful for such case. Like:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;model passFail&amp;nbsp; = absent / link= probit;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;contrast '1%' intercept 1 absent 0.01 / estimate=prob;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;contrast '10%' intercept 1 absent 0.10 / estimate=prob;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Anyway, thanks for the help again!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 19:56:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/determine-significant-cut-off-points/m-p/79628#M3805</guid>
      <dc:creator>ShawnZ</dc:creator>
      <dc:date>2013-07-19T19:56:33Z</dc:date>
    </item>
  </channel>
</rss>

