<?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 get a Classification Chart for the TEST SET (not just train and validation)? in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-get-a-Classification-Chart-for-the-TEST-SET-not-just/m-p/402936#M6143</link>
    <description>&lt;P&gt;You will see charts like ROC, score ranking overlays and other fit statistics for test data in model comparison node output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Oct 2017 20:06:38 GMT</pubDate>
    <dc:creator>AnujaNagpal</dc:creator>
    <dc:date>2017-10-10T20:06:38Z</dc:date>
    <item>
      <title>How to get a Classification Chart for the TEST SET (not just train and validation)?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-get-a-Classification-Chart-for-the-TEST-SET-not-just/m-p/402113#M6116</link>
      <description>&lt;P&gt;My Data Partition node is set at 40:30:30 (Train:Validate:Test)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My model is set up like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data Source -&amp;gt; Data Partition -&amp;gt; Decision Tree&amp;nbsp; -&amp;gt;&amp;nbsp; Model Comparison&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;gt; Decision Tree&amp;nbsp; /&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can get a Classification Chart for the Train and Validation parts when looking at the individual Decision Tree results and in the Model Comparison results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How do a get a Classification Chart for the test results?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(In case it is somehow relevant, there are interval and nominal inputs, and the target is binary.&lt;/P&gt;
&lt;P&gt;I used the option for Default with Inverse Prior Weights as there is a 95 / 5 distribution, and I'm&lt;/P&gt;
&lt;P&gt;interested in improving the ability to predict the rare event, which of course cause a reduction&lt;/P&gt;
&lt;P&gt;in the ability to predict the common event.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 19:36:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-get-a-Classification-Chart-for-the-TEST-SET-not-just/m-p/402113#M6116</guid>
      <dc:creator>Mike90</dc:creator>
      <dc:date>2017-10-10T19:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a Classification Chart for the TEST SET (not just train and validation)?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-get-a-Classification-Chart-for-the-TEST-SET-not-just/m-p/402936#M6143</link>
      <description>&lt;P&gt;You will see charts like ROC, score ranking overlays and other fit statistics for test data in model comparison node output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 20:06:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-get-a-Classification-Chart-for-the-TEST-SET-not-just/m-p/402936#M6143</guid>
      <dc:creator>AnujaNagpal</dc:creator>
      <dc:date>2017-10-10T20:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a Classification Chart for the TEST SET (not just train and validation)?</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-get-a-Classification-Chart-for-the-TEST-SET-not-just/m-p/402937#M6144</link>
      <description>&lt;P&gt;&lt;SPAN style="color: #565656; font-size: 9pt;"&gt;&amp;nbsp;You will need to write your own SAS code in order to get this classification matrix.&amp;nbsp;&amp;nbsp;If you add a SAS Code node after the Model Comparison node, you can write the following code to get the classification matrix:&lt;BR /&gt;&lt;BR /&gt;***I am using the target variable named target.&amp;nbsp;&amp;nbsp;If my target variable is bad, then I use f_bad and I_bad (assuming no decisions or prior probabilities set).&lt;BR /&gt;&lt;BR /&gt;proc freq data=&amp;amp;em_import_test;&lt;BR /&gt;tables f_target*I_target;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #565656; font-size: 9pt;"&gt;***I am using the target variable named target.&amp;nbsp;&amp;nbsp;If my target variable is bad, then I use f_bad and I_bad (assuming decisions are set).&lt;BR /&gt;&lt;BR /&gt;proc freq data=&amp;amp;em_import_test;&lt;BR /&gt;tables f_target*d_target;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 20:10:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-get-a-Classification-Chart-for-the-TEST-SET-not-just/m-p/402937#M6144</guid>
      <dc:creator>CraigDeVault</dc:creator>
      <dc:date>2017-10-10T20:10:34Z</dc:date>
    </item>
  </channel>
</rss>

