<?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: Proc HPForest in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356476#M5283</link>
    <description>&lt;P&gt;Hi Wendy,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. Still not getting the validation part in fitstats. I've attached the screen shot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Srihari&lt;/P&gt;</description>
    <pubDate>Fri, 05 May 2017 16:53:18 GMT</pubDate>
    <dc:creator>Srihari40</dc:creator>
    <dc:date>2017-05-05T16:53:18Z</dc:date>
    <item>
      <title>Proc HPForest</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356251#M5280</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When we execute Proc HPForest in SAS studio results show fitstats for training &amp;amp; Out of Bag(OOB) observations whereas in SAS Eminer results show fitstats for training,OOB and for validation datasets. I'm just wondering why this difference and how can we get fitstats for validation dataset in SAS studio?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srihari&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 07:03:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356251#M5280</guid>
      <dc:creator>Srihari40</dc:creator>
      <dc:date>2017-05-05T07:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPForest</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356430#M5281</link>
      <description>&lt;P&gt;You would need to have a partition indicator in your data set that determines which observations are included for training and which for validation. &amp;nbsp;For example for a variable with value 1 for the training observations and 0 for the validation observations,&amp;nbsp;you can use the PARTITION statement in PROC HPFOREST:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;partition rolevar=Name-of-your-partition-variable (train='1' validate='0');&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 May 2017 15:01:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356430#M5281</guid>
      <dc:creator>WendyCzika</dc:creator>
      <dc:date>2017-05-05T15:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPForest</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356476#M5283</link>
      <description>&lt;P&gt;Hi Wendy,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply. Still not getting the validation part in fitstats. I've attached the screen shot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Srihari&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 16:53:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356476#M5283</guid>
      <dc:creator>Srihari40</dc:creator>
      <dc:date>2017-05-05T16:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPForest</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356483#M5284</link>
      <description>&lt;P&gt;Try with Validate in place of Test on your PARTITION statement. &amp;nbsp;I don't think a test partition is supported.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 17:06:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356483#M5284</guid>
      <dc:creator>WendyCzika</dc:creator>
      <dc:date>2017-05-05T17:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPForest</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356486#M5285</link>
      <description>&lt;P&gt;Thanks Wendy. It is working fine now :-).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Srihari&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 17:20:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356486#M5285</guid>
      <dc:creator>Srihari40</dc:creator>
      <dc:date>2017-05-05T17:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPForest</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356516#M5287</link>
      <description>&lt;P&gt;Hi &lt;SPAN class=""&gt;&lt;A id="link_8" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/65869" target="_self"&gt;Srihari40&lt;/A&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm glad you found some useful info! If one of the replies was the exact solution to your problem, can you "Accept it as a solution"? Or if one was particularly helpful, feel free to "Like" it. This will help other community members who may run into the same issue know what worked.&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;Anna&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 18:41:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356516#M5287</guid>
      <dc:creator>AnnaBrown</dc:creator>
      <dc:date>2017-05-05T18:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Proc HPForest</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356575#M5289</link>
      <description>&lt;P&gt;Hi Anna,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As suggested by you I accepted Wendy'a answer as a solution. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srihari&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2017 01:38:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Proc-HPForest/m-p/356575#M5289</guid>
      <dc:creator>Srihari40</dc:creator>
      <dc:date>2017-05-06T01:38:23Z</dc:date>
    </item>
  </channel>
</rss>

