<?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: AUC vs MAPE, please help! Thank you in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192263#M2431</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would use misclassification rate instead. It depends on your data, but I would be ok with a misclassification rate of 0.3 or less. GINI, AUC, c-statistic and logarithmic loss are other common measures for binary classification accuracy. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a traditional binary target whose values are 0 and 1, then you should not use MAPE because you may be dividing by 0. Even if your binary target has different values than 0 and 1, MAPE and others measures like ASE and RMSE are meant for interval targets. These measures help you understand the average distance between your numeric regression predictions and your numeric observed values. In logistic regression, you are doing a classification, not a prediction. You are labeling cases as belonging to one group or another. The distance between these groups might be arbitrary or hard to understand, and that is why we look at the misclassification rate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your misclassification rate is between 0.3 and 0.5, then there are many steps you can take to find a more accurate model, with feature selection being the foremost. Have you tried forward, backward or stepwise variable selection? Another common problem with logistic regression is quasi-complete separation. Are any of your parameters greater than 15 or 20? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, your data may just be noisy and difficult to model. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Apr 2014 13:57:54 GMT</pubDate>
    <dc:creator>PatrickHall</dc:creator>
    <dc:date>2014-04-28T13:57:54Z</dc:date>
    <item>
      <title>AUC vs MAPE, please help! Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192260#M2428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000099;"&gt;Hi All,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000099;"&gt;I had a quick question, I have created several models, and I use the AUC and MAPE to assess them. MAPE is calculated as below. My question, is the AUC is not good but the MAPE looks OK? How is it possible?..Below are my thresholds and AUC , MAPE results (Table at the Bottom)..So what type of decision should I make? Shall I look at AUC only, or MAPE? Your help will be much appreciated. Thank you&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000099;"&gt;thresholds &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;STRONG style="text-decoration: underline;"&gt;AUC&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;0.6-0.7: Acceptable&lt;/P&gt;&lt;P&gt;0.71-0.8: Good&lt;/P&gt;&lt;P&gt;0.81-0.9: Excellent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;STRONG style="text-decoration: underline;"&gt;MAPE&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; 0.2-0.3: Acceptable&lt;/P&gt;&lt;P&gt;0.2-0.1:Good&lt;/P&gt;&lt;P&gt;0.1-0.001: Excellent &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; MAPE Calculation = 1/N Sum (|Actual-Predicted|/|Actual|)*100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="256"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl66" height="32" width="64"&gt;Model&lt;/TD&gt;&lt;TD class="xl66" style="border-color: currentColor; border-left-width: medium; border-left-style: none;" width="64"&gt;Gini&lt;/TD&gt;&lt;TD class="xl66" style="border-color: currentColor; border-left-width: medium; border-left-style: none;" width="64"&gt;AUC&lt;/TD&gt;&lt;TD class="xl66" style="border-color: currentColor; border-left-width: medium; border-left-style: none;" width="64"&gt;MAPE&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 1&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.07&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.53&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 2&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.14&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.57&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.0828&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 3&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.37&lt;/TD&gt;&lt;TD class="xl70" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.69&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.0556&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 4&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.08&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.55&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.0673&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 5&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.01&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.51&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.0249&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 6&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.09&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.55&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.1552&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 7&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.18&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.59&lt;/TD&gt;&lt;TD class="xl70" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.2327&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 8&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.16&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.58&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.0654&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 9&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.13&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.57&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.0842&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 10&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.14&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.57&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.0261&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 11&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.35&lt;/TD&gt;&lt;TD class="xl70" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.68&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.1336&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 12&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.16&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.58&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.1704&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 13&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.07&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.54&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.0504&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 14&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.11&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.56&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.096&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 15&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.09&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.55&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.1478&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 16&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.19&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.6&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.045&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 17&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.18&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.59&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.0505&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 18&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.16&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.59&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.1472&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt;&lt;TD class="xl65" height="20" style="border-color: currentColor windowtext windowtext; border-top-width: medium; border-top-style: none;"&gt;Model 19&lt;/TD&gt;&lt;TD class="xl67" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.17&lt;/TD&gt;&lt;TD class="xl68" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.59&lt;/TD&gt;&lt;TD class="xl69" style="border-color: currentColor windowtext windowtext currentColor; border-top-width: medium; border-left-width: medium; border-top-style: none; border-left-style: none;"&gt;0.1556&lt;/TD&gt; &lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2014 12:13:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192260#M2428</guid>
      <dc:creator>Kanyange</dc:creator>
      <dc:date>2014-04-25T12:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: AUC vs MAPE, please help! Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192261#M2429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MAPE is usually for models with interval targets (regression, time series, etc.) and not appropriate for scenarios where the actual values can be 0, as this could cause a division by 0 during the MAPE calculation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://en.wikipedia.org/wiki/Mean_absolute_percentage_error" title="http://en.wikipedia.org/wiki/Mean_absolute_percentage_error"&gt;Mean absolute percentage error - Wikipedia, the free encyclopedia&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUC is typically for binary classifiers like logistic regression. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://en.wikipedia.org/wiki/Receiver_operating_characteristic" style="font-size: 10pt; line-height: 1.5em;" title="http://en.wikipedia.org/wiki/Receiver_operating_characteristic"&gt;Receiver operating characteristic - Wikipedia, the free encyclopedia&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have an interval or binary target?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a binary target, what is the event occurrence rate for your target? The situation you describe is common for rare target event occurrences.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To increase your&amp;nbsp; c-statistic/AUC for rare targets: &lt;/P&gt;&lt;P&gt;- Disproportionately over-sample the rare events&lt;/P&gt;&lt;P&gt;- Add a weight to the rare events &lt;/P&gt;&lt;P&gt;- Use an inverse prior distribution &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2014 14:41:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192261#M2429</guid>
      <dc:creator>PatrickHall</dc:creator>
      <dc:date>2014-04-27T14:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: AUC vs MAPE, please help! Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192262#M2430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your response...My target is binary and I have used Logistic Regression to build the model...The response rate varies, some models will have 50%, other 20%, other 10%.. and the lowest has around&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the response rate is not that rare...so Are you saying that for a binary target, I shouldn't use MAPE? What should I use then to compare Actual and Predicted...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 10:22:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192262#M2430</guid>
      <dc:creator>Kanyange</dc:creator>
      <dc:date>2014-04-28T10:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: AUC vs MAPE, please help! Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192263#M2431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would use misclassification rate instead. It depends on your data, but I would be ok with a misclassification rate of 0.3 or less. GINI, AUC, c-statistic and logarithmic loss are other common measures for binary classification accuracy. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a traditional binary target whose values are 0 and 1, then you should not use MAPE because you may be dividing by 0. Even if your binary target has different values than 0 and 1, MAPE and others measures like ASE and RMSE are meant for interval targets. These measures help you understand the average distance between your numeric regression predictions and your numeric observed values. In logistic regression, you are doing a classification, not a prediction. You are labeling cases as belonging to one group or another. The distance between these groups might be arbitrary or hard to understand, and that is why we look at the misclassification rate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your misclassification rate is between 0.3 and 0.5, then there are many steps you can take to find a more accurate model, with feature selection being the foremost. Have you tried forward, backward or stepwise variable selection? Another common problem with logistic regression is quasi-complete separation. Are any of your parameters greater than 15 or 20? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, your data may just be noisy and difficult to model. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 13:57:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192263#M2431</guid>
      <dc:creator>PatrickHall</dc:creator>
      <dc:date>2014-04-28T13:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: AUC vs MAPE, please help! Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192264#M2432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for coming back to me...when you say Are any of your parameters greater than 15 or 20? What do you mean exactly...Do you mean the number of predictors?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 14:25:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192264#M2432</guid>
      <dc:creator>Kanyange</dc:creator>
      <dc:date>2014-04-30T14:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: AUC vs MAPE, please help! Thank you</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192265#M2433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I mean: Are your actual estimated parameters very large?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should have said "magnitude" of 15 or 20 because in the logit space (1/(1+e^-(B0+B1*x1 + ... + Bk*xk))) that makes the exponential values very large - close to a machine infinity - and can cause problems with your model. It is one of the most common problems with logistic regression. For more information:&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://en.wikipedia.org/wiki/Separation_(statistics)" title="http://en.wikipedia.org/wiki/Separation_(statistics)"&gt;Separation (statistics) - Wikipedia, the free encyclopedia&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 17:19:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/AUC-vs-MAPE-please-help-Thank-you/m-p/192265#M2433</guid>
      <dc:creator>PatrickHall</dc:creator>
      <dc:date>2014-04-30T17:19:33Z</dc:date>
    </item>
  </channel>
</rss>

