<?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 HP4SCORE- Display out Validation(Validate dataset) Probability values. in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/511309#M7483</link>
    <description>&lt;P&gt;&lt;STRONG&gt;Dear Sir/Madam&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I would like to know how can i call out the validate probability value using HP4SCORE procedure. i used the&amp;nbsp;sampsio.HMEQ&amp;nbsp; data sample to run it on HPForest as below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;HPForest Procedure :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;proc hpsample data= sampsio.HMEQ out=hmeq sampobs=1788 seed=1234567 partition;&lt;BR /&gt;Class Bad Delinq Derog Job nInq Reason ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc hpforest data=hmeq&lt;BR /&gt;maxtrees= 500 vars_to_try=4&lt;BR /&gt;seed=600 trainfraction=0.7&lt;BR /&gt;maxdepth=50 leafsize=6&lt;BR /&gt;alpha= 0.05;&lt;BR /&gt;target Bad/ level=binary;&lt;BR /&gt;input Delinq Derog Job nInq Reason / level=nominal;&lt;BR /&gt;Partition roleVar=_partind_(train='1' validate='0') ;&lt;BR /&gt;ods output fitstatistics = fit;&lt;BR /&gt;save file = "/&amp;amp;outdir./Cars.sas";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc hp4score data=hmeq;&lt;BR /&gt;id Bad;&lt;BR /&gt;score file="/&amp;amp;outdir./Cars.sas" out=Score123;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=Score123 (obs=100);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output of the hp4score procedure only display the P_Bad0 ,PBad1&amp;amp;I_BAD. ( Please refer to the attachment) and there is no Validate dataset probability output for validate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HP4Score.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24761iBB7F396A5FAAD568/image-size/large?v=v2&amp;amp;px=999" role="button" title="HP4Score.jpg" alt="HP4Score.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Question #1 :&lt;/P&gt;&lt;P&gt;What does I_Bad means for my HPForest output based on the script above?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similarity, applying the same data set to&amp;nbsp; HPSPLIT procedure, the scored data produces the probability value for Train and Validate, please see below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HPSPLIT.JPG" style="width: 741px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24760iFB00F952EBBBF00C/image-dimensions/741x195?v=v2" width="741" height="195" role="button" title="HPSPLIT.JPG" alt="HPSPLIT.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAS Code used:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;data hmeq;&lt;BR /&gt;length Bad Loan MortDue Value 8 Reason Job $7&lt;BR /&gt;YoJ Derog Delinq CLAge nInq CLNo DebtInc 8;&lt;BR /&gt;set sampsio.hmeq;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print data=hmeq(obs=10);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/* HPSLIT procedure */&lt;BR /&gt;ods graphics on;&lt;BR /&gt;proc hpsplit data=hmeq maxdepth=5;&lt;BR /&gt;class Bad Delinq Derog Job nInq Reason;&lt;BR /&gt;model Bad(event='1') = Delinq Derog Job nInq Reason CLAge CLNo&lt;BR /&gt;DebtInc Loan MortDue Value YoJ;&lt;BR /&gt;prune costcomplexity;&lt;/P&gt;&lt;P&gt;partition fraction(validate=0.3 seed=1234567);&lt;BR /&gt;/* grow gini; */&lt;BR /&gt;code file="/&amp;amp;outdir/hpsplexc.sas";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data scored;&lt;BR /&gt;set hmeq;&lt;BR /&gt;%include '/&amp;amp;outdir/hpsplexc.sas';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/* Sample 100 records to view */&lt;BR /&gt;proc print data =WORK.scored (obs=500);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question # 2&lt;/P&gt;&lt;P&gt;How and what have i missed in my HPForest coding which cause me not be able to call out the validation probability just like HPSPLIT, the score output has both Train( P_Bad0, P_Bad1) and Validate (V_Bad0 , V_Bad1) .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly advice,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for your great help !!&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;P&gt;Jimmy&lt;/P&gt;</description>
    <pubDate>Thu, 08 Nov 2018 07:36:34 GMT</pubDate>
    <dc:creator>jwong7</dc:creator>
    <dc:date>2018-11-08T07:36:34Z</dc:date>
    <item>
      <title>HP4SCORE- Display out Validation(Validate dataset) Probability values.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/511309#M7483</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Dear Sir/Madam&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I would like to know how can i call out the validate probability value using HP4SCORE procedure. i used the&amp;nbsp;sampsio.HMEQ&amp;nbsp; data sample to run it on HPForest as below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;HPForest Procedure :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;proc hpsample data= sampsio.HMEQ out=hmeq sampobs=1788 seed=1234567 partition;&lt;BR /&gt;Class Bad Delinq Derog Job nInq Reason ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc hpforest data=hmeq&lt;BR /&gt;maxtrees= 500 vars_to_try=4&lt;BR /&gt;seed=600 trainfraction=0.7&lt;BR /&gt;maxdepth=50 leafsize=6&lt;BR /&gt;alpha= 0.05;&lt;BR /&gt;target Bad/ level=binary;&lt;BR /&gt;input Delinq Derog Job nInq Reason / level=nominal;&lt;BR /&gt;Partition roleVar=_partind_(train='1' validate='0') ;&lt;BR /&gt;ods output fitstatistics = fit;&lt;BR /&gt;save file = "/&amp;amp;outdir./Cars.sas";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc hp4score data=hmeq;&lt;BR /&gt;id Bad;&lt;BR /&gt;score file="/&amp;amp;outdir./Cars.sas" out=Score123;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=Score123 (obs=100);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output of the hp4score procedure only display the P_Bad0 ,PBad1&amp;amp;I_BAD. ( Please refer to the attachment) and there is no Validate dataset probability output for validate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HP4Score.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24761iBB7F396A5FAAD568/image-size/large?v=v2&amp;amp;px=999" role="button" title="HP4Score.jpg" alt="HP4Score.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Question #1 :&lt;/P&gt;&lt;P&gt;What does I_Bad means for my HPForest output based on the script above?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similarity, applying the same data set to&amp;nbsp; HPSPLIT procedure, the scored data produces the probability value for Train and Validate, please see below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HPSPLIT.JPG" style="width: 741px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/24760iFB00F952EBBBF00C/image-dimensions/741x195?v=v2" width="741" height="195" role="button" title="HPSPLIT.JPG" alt="HPSPLIT.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAS Code used:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;data hmeq;&lt;BR /&gt;length Bad Loan MortDue Value 8 Reason Job $7&lt;BR /&gt;YoJ Derog Delinq CLAge nInq CLNo DebtInc 8;&lt;BR /&gt;set sampsio.hmeq;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print data=hmeq(obs=10);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/* HPSLIT procedure */&lt;BR /&gt;ods graphics on;&lt;BR /&gt;proc hpsplit data=hmeq maxdepth=5;&lt;BR /&gt;class Bad Delinq Derog Job nInq Reason;&lt;BR /&gt;model Bad(event='1') = Delinq Derog Job nInq Reason CLAge CLNo&lt;BR /&gt;DebtInc Loan MortDue Value YoJ;&lt;BR /&gt;prune costcomplexity;&lt;/P&gt;&lt;P&gt;partition fraction(validate=0.3 seed=1234567);&lt;BR /&gt;/* grow gini; */&lt;BR /&gt;code file="/&amp;amp;outdir/hpsplexc.sas";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data scored;&lt;BR /&gt;set hmeq;&lt;BR /&gt;%include '/&amp;amp;outdir/hpsplexc.sas';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/* Sample 100 records to view */&lt;BR /&gt;proc print data =WORK.scored (obs=500);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question # 2&lt;/P&gt;&lt;P&gt;How and what have i missed in my HPForest coding which cause me not be able to call out the validation probability just like HPSPLIT, the score output has both Train( P_Bad0, P_Bad1) and Validate (V_Bad0 , V_Bad1) .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly advice,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for your great help !!&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;P&gt;Jimmy&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 07:36:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/511309#M7483</guid>
      <dc:creator>jwong7</dc:creator>
      <dc:date>2018-11-08T07:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: HP4SCORE- Display out Validation(Validate dataset) Probability values.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/511701#M7486</link>
      <description>&lt;P&gt;I_BAD represents the predicted level of BAD based on the P_ variables.&amp;nbsp; So if P_BAD0 &amp;gt; P_BAD1, then I_BAD=0 (the prediction is BAD=0), and vice-versa.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you are scoring data, you don't use validation data, so you wouldn't get the V_ columns like you do when you are training the model.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 14:46:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/511701#M7486</guid>
      <dc:creator>WendyCzika</dc:creator>
      <dc:date>2018-11-09T14:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: HP4SCORE- Display out Validation(Validate dataset) Probability values.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/513197#M7512</link>
      <description>&lt;P&gt;Thanks for your kind input. May i know how can i use the train dataset to call out the&amp;nbsp;&lt;SPAN&gt;V_ columns ?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;kindly advise.&amp;nbsp;&lt;/SPAN&gt;&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;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/14512"&gt;@WendyCzika&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I_BAD represents the predicted level of BAD based on the P_ variables.&amp;nbsp; So if P_BAD0 &amp;gt; P_BAD1, then I_BAD=0 (the prediction is BAD=0), and vice-versa.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you are scoring data, you don't use validation data, so you wouldn't get the V_ columns like you do when you are training the model.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2018 03:15:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/513197#M7512</guid>
      <dc:creator>jwong7</dc:creator>
      <dc:date>2018-11-15T03:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: HP4SCORE- Display out Validation(Validate dataset) Probability values.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/513198#M7513</link>
      <description>&lt;P&gt;Thanks for your kind input. May i know how can i use the train dataset to call out the&amp;nbsp;&lt;SPAN&gt;V_ columns&amp;nbsp;using HPForest procedure?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;kindly advise. thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2018 03:17:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/513198#M7513</guid>
      <dc:creator>jwong7</dc:creator>
      <dc:date>2018-11-15T03:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: HP4SCORE- Display out Validation(Validate dataset) Probability values.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/513501#M7516</link>
      <description>&lt;P&gt;Sorry, I'm not sure what you are asking.&amp;nbsp; Can you give some more details?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2018 18:22:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/513501#M7516</guid>
      <dc:creator>WendyCzika</dc:creator>
      <dc:date>2018-11-15T18:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: HP4SCORE- Display out Validation(Validate dataset) Probability values.</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/514968#M7522</link>
      <description>&lt;P&gt;Dear Wendy&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry i did not make it clear on my objective and questions. Basically i want to use ROC curve to compare between classification models such as&amp;nbsp; picture below :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Model comparison.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/25100i46C931E85F136168/image-size/large?v=v2&amp;amp;px=999" role="button" title="Model comparison.JPG" alt="Model comparison.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i got this infor from SAS youtube link&amp;nbsp; below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=KMV5OtgTUUc" target="_blank"&gt;https://www.youtube.com/watch?v=KMV5OtgTUUc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The understanding i have from SAS video above is, the instructor was running each classification model and score them. At the end of it, the instructor used Proc access to combined multiple model and compared them using the ROC chart above.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have tried on HPSplit procedure and managed to score them successfully as below&amp;nbsp;using sampsio.HMEQ sample&amp;nbsp; the output results containing&amp;nbsp; the probability value for train and validate dataset like below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HPSPLIT.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/25101iF5039FA808353050/image-size/large?v=v2&amp;amp;px=999" role="button" title="HPSPLIT.JPG" alt="HPSPLIT.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HPSplit scoring code used:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods graphics on;&lt;BR /&gt;proc hpsplit data=hmeq maxdepth=5;&lt;BR /&gt;class Bad Delinq Derog Job nInq Reason;&lt;BR /&gt;model Bad(event='1') = Delinq Derog Job nInq Reason CLAge CLNo&lt;BR /&gt;DebtInc Loan MortDue Value YoJ;&lt;BR /&gt;prune costcomplexity;&lt;/P&gt;&lt;P&gt;partition fraction(validate=0.3 seed=1234567);&lt;BR /&gt;code file="/ABC/hpsplexc.sas";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data scored;&lt;BR /&gt;set hmeq;&lt;BR /&gt;%include '/lustre/home/1000151442/hpsplexc.sas';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now ,&amp;nbsp; I am&amp;nbsp; trying to simulate the same thing, same dataset using HPForest procedure.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc hpsample data= sampsio.HMEQ&lt;BR /&gt;out=hmeq sampobs=1788 seed=1234567 partition;&lt;BR /&gt;Class Bad Delinq Derog Job nInq Reason ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc hpforest data=work.hmeq&lt;BR /&gt;maxtrees= 500 vars_to_try=4&lt;BR /&gt;seed=600&lt;BR /&gt;maxdepth=50 leafsize=6&lt;BR /&gt;alpha= 0.05;&lt;BR /&gt;target Bad/ level=binary;&lt;BR /&gt;input Delinq Derog Job nInq Reason / level=nominal;&lt;BR /&gt;Partition roleVar=_partind_(train='0' validate='1') ;&lt;BR /&gt;ods output fitstatistics = fit;&lt;BR /&gt;save file = "/&amp;amp;outdir/abc.sas";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc hp4score data=work.hmeq;&lt;BR /&gt;id Bad;&lt;BR /&gt;score file="/&amp;amp;outdir/abc.sas" out=Score123;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=Score123;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output results :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HPForest_Scored.JPG" style="width: 478px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/25102i77218023880804EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="HPForest_Scored.JPG" alt="HPForest_Scored.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i couldn't get the probablity value for V_BAD0 &amp;amp; V_BAD1 from HPForest like HPSplit above.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly guide me on this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks!&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;&lt;P&gt;&amp;nbsp;&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;&lt;P&gt;&amp;nbsp;&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>Wed, 21 Nov 2018 02:31:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HP4SCORE-Display-out-Validation-Validate-dataset-Probability/m-p/514968#M7522</guid>
      <dc:creator>jwong7</dc:creator>
      <dc:date>2018-11-21T02:31:01Z</dc:date>
    </item>
  </channel>
</rss>

