<?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 Misclassification Rate in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Misclassification-Rate/m-p/58110#M2707</link>
    <description>Does anyone know if it is possible to control the direction of misclassification in a logistic regression model? I would rather misclassify a good customer as a bad customer rather than misclassify a bad customer as a good customer&lt;BR /&gt;
&lt;BR /&gt;
Thanks for any insight!</description>
    <pubDate>Wed, 27 Apr 2011 16:17:43 GMT</pubDate>
    <dc:creator>BTAinRVA</dc:creator>
    <dc:date>2011-04-27T16:17:43Z</dc:date>
    <item>
      <title>Misclassification Rate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Misclassification-Rate/m-p/58110#M2707</link>
      <description>Does anyone know if it is possible to control the direction of misclassification in a logistic regression model? I would rather misclassify a good customer as a bad customer rather than misclassify a bad customer as a good customer&lt;BR /&gt;
&lt;BR /&gt;
Thanks for any insight!</description>
      <pubDate>Wed, 27 Apr 2011 16:17:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Misclassification-Rate/m-p/58110#M2707</guid>
      <dc:creator>BTAinRVA</dc:creator>
      <dc:date>2011-04-27T16:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Misclassification Rate</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Misclassification-Rate/m-p/329977#M17426</link>
      <description>&lt;P&gt;The assigned classification is dependent on the probabilities generated by the model. By default, if the probability is greater than .50, the classification is issued in the affirmative.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc logistic data=CustomerData outmodel=logitModel;
 model Customer(Event='Good') = ShopFrequency MoneySpent;
 score data=NewCustomerData out=NewCustomerData;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In this example, predicted values of I_Customer = 'Good' when P_Good &amp;gt; .50.&lt;/P&gt;&lt;P&gt;You can reassign the predicted value &lt;SPAN&gt;I_Customer by processing the data through another data step and requiring a lower threshold. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data NewCustomerData;
	set NewCustomerData;
	if P_Customer &amp;gt; .4 then I_Customer = 'Good';
	else I_Customer = 'Bad';
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;I don't think artificially lowering the classification threshold has a&amp;nbsp;methodological justification, but it sounds like&amp;nbsp;this is a low-stakes application.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Feb 2017 20:19:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Misclassification-Rate/m-p/329977#M17426</guid>
      <dc:creator>FeloniousPunk</dc:creator>
      <dc:date>2017-02-04T20:19:52Z</dc:date>
    </item>
  </channel>
</rss>

