<?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: How to determine cut off value in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-cut-off-value/m-p/890934#M44148</link>
    <description>&lt;P&gt;You can conceivably create a data set with one observation per callback with a variable indicating the number of days until the callback and another indicating if the callback was a repeat call or not. Given that, you can simply fit a single logistic model such as the following - assume REPEAT=1 if the call is a repeat call, 0 otherwise. The EFFECPLOT statement shows how the probability of being a repeat call changes as the number of callback days increases. You can use that plot to pick a cutoff on the number of days after you choose what probability you want to satisfy.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=&amp;lt;your_data&amp;gt;;
model repeat(event="1")=callback_days;
effectplot;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 25 Aug 2023 02:10:08 GMT</pubDate>
    <dc:creator>StatDave</dc:creator>
    <dc:date>2023-08-25T02:10:08Z</dc:date>
    <item>
      <title>How to determine cut off value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-cut-off-value/m-p/889872#M44109</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;I'm trying to assess what percent of callers' issues are resolved within the caller's first call. Currently, a repeat call is defined as a call placed within 14 days of a customer's first call (i.e. callback window = 14 days). I'm trying to determine if this 14-day callback window can be justifiably shortened (i.e. determine what a proper cutoff value for a callback is).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm thinking of collecting a sample of calls and running logistic regression to model a repeat call having the same call intent as the first call as a function of time. (The thinking is that as more time passes after the first call, the less likely the caller's subsequent call is related to the first call).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be valid to specify 15 logistic models in which I first define callback window as 0 days and increment by 1 day up to 14? So callback window would be defined as 0 days in first model, 0-1 days in second, 0-2 days in third, and so on. Is it a valid approach to choose the model with the highest area under the curve to determine the cut-off value for my callback window?&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 18 Aug 2023 13:38:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-cut-off-value/m-p/889872#M44109</guid>
      <dc:creator>everyone</dc:creator>
      <dc:date>2023-08-18T13:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine cut off value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-cut-off-value/m-p/889911#M44110</link>
      <description>Calculate all the callback durations, making a cutoff of 90/180 days assuming that would be a new call (if you don't have a issue ID) and then plot the CDF to see where the curve plateaus.  Proc Univariate can be used to plot the graph.&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Aug 2023 15:03:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-cut-off-value/m-p/889911#M44110</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-08-18T15:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine cut off value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-cut-off-value/m-p/889925#M44111</link>
      <description>&lt;P&gt;Another suggestion of "get an idea of how your data looks".&lt;/P&gt;
&lt;P&gt;If you have something that indicates the general topic of the "calls" you might add that information to a variable and use that as BY processing with &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;'s suggestion to see if different topics might have a different behavior.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Consider if 95% of calls related to topic XX are resolved with one call and never generate a call back you might not want them influencing the call back period analysis of topic YY that typically takes 3 or 4 call backs to resolve.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 16:24:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-cut-off-value/m-p/889925#M44111</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-18T16:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine cut off value</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-cut-off-value/m-p/890934#M44148</link>
      <description>&lt;P&gt;You can conceivably create a data set with one observation per callback with a variable indicating the number of days until the callback and another indicating if the callback was a repeat call or not. Given that, you can simply fit a single logistic model such as the following - assume REPEAT=1 if the call is a repeat call, 0 otherwise. The EFFECPLOT statement shows how the probability of being a repeat call changes as the number of callback days increases. You can use that plot to pick a cutoff on the number of days after you choose what probability you want to satisfy.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=&amp;lt;your_data&amp;gt;;
model repeat(event="1")=callback_days;
effectplot;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Aug 2023 02:10:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-determine-cut-off-value/m-p/890934#M44148</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2023-08-25T02:10:08Z</dc:date>
    </item>
  </channel>
</rss>

