<?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 HPSPLIT: How can I run HPSPLIT in SAS EG (Server) in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453974#M29260</link>
    <description>&lt;P&gt;The behavior of HPSPLIT was enhanced in one of the SAS 9.4 releases, or more importantly the SAS/STAT releases (12.1, 13.1, 14.1).&amp;nbsp; Run&amp;nbsp;&lt;STRONG&gt;proc product_status&lt;/STRONG&gt; in each of your environments to see the different versions that you might be working with.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Apr 2018 16:17:22 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2018-04-13T16:17:22Z</dc:date>
    <item>
      <title>PROC HPSPLIT: How can I run HPSPLIT in SAS EG (Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453966#M29258</link>
      <description>&lt;P&gt;Hello SAS Community:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to run a&amp;nbsp;regression Tree (PROC HPSPLIT)&amp;nbsp;in SAS EG and PC SAS. I list my PC SAS version and SAS EG version as follow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My PC SAS Version: ---- Software 9.4 (TS1M3)&lt;/P&gt;&lt;P&gt;My&amp;nbsp;SAS EG&amp;nbsp;Version: ---- 7.12 HF7 (7.100.2.3491) (64-bit)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are what I can not do and what I can do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(1) to run the following code in PC SAS (local environment) always correct outputs including 16 nodes. However, I can not run the same code in PC SAS under "RSUBMIT", which is remote Teradata environment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC HPSPLIT data= Mydata seed=123 ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; class&amp;nbsp; x1 x2 x3 x4 ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; model&amp;nbsp; Y_continuous&amp;nbsp;= x1 x2 x3 x4&amp;nbsp; ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; PRUNE&amp;nbsp;&amp;nbsp; REDUCEDERROR (LEAVES = 30 );&lt;BR /&gt;&amp;nbsp;&amp;nbsp; output OUT = hpspl_output_file_v1 ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; code file= "DTree_score_output_v1.sas";&amp;nbsp;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(2) to run the&amp;nbsp;same code in SAS EG&amp;nbsp;(remote Teradata environment) always creates some syntax errors. After twisting SAS code, I can run a different version of HPSPLIT in SAS EG without syntax errors. However, the output is not what I expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC HPSPLIT data= Mydata seed=123&amp;nbsp;&lt;BR /&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; ASSIGNMISSING = similar nodes&lt;BR /&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; cvmodelfit&amp;nbsp; splitonce&amp;nbsp; */&lt;BR /&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; /* LEAFSIZE = 500&amp;nbsp; */&lt;BR /&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; maxdepth = 8&amp;nbsp; maxbranch= 3&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MISSING = SIMILARITY&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; class&amp;nbsp; x1 x2 x3 x4 ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; model Y_contionuous = x1 x2 x3 x4&amp;nbsp; ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; PRUNE&amp;nbsp; ASE ;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; output /* OUT = hpspl_output_file_v1 */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRUNESUBTREE= WORK.QC_2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IMPORTANCE = work.QC_3&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;BR /&gt;&amp;nbsp; code file= "/......my directory in Unix...../"Tree_score_output_v1.sas";&amp;nbsp;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can&amp;nbsp;some one advise me how to run HPSPLIT in SAS EG (remote Teradata environment)&amp;nbsp;and get same/similar outputs&amp;nbsp;and results as in PC SAS (local environment)?&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;</description>
      <pubDate>Fri, 13 Apr 2018 15:59:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453966#M29258</guid>
      <dc:creator>jxc518</dc:creator>
      <dc:date>2018-04-13T15:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HPSPLIT: How can I run HPSPLIT in SAS EG (Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453973#M29259</link>
      <description>&lt;P&gt;With syntax errors best is to copy&amp;nbsp;the code and messages from log and paste into a code box opened on the forum using the {I} menu icon&amp;nbsp;to preserve any formatting and locations of diagnostic characters that appear in the error. The main windows will reformat such messages possibly masking where the error was found by SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unexpected results? Post the expectation and the actual result to&amp;nbsp;show and describe&amp;nbsp;the differences. Since we do not have your data or environment there really isn't any way to know what may be missing, extra or unexpected values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2018 16:12:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453973#M29259</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-13T16:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HPSPLIT: How can I run HPSPLIT in SAS EG (Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453974#M29260</link>
      <description>&lt;P&gt;The behavior of HPSPLIT was enhanced in one of the SAS 9.4 releases, or more importantly the SAS/STAT releases (12.1, 13.1, 14.1).&amp;nbsp; Run&amp;nbsp;&lt;STRONG&gt;proc product_status&lt;/STRONG&gt; in each of your environments to see the different versions that you might be working with.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2018 16:17:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453974#M29260</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2018-04-13T16:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HPSPLIT: How can I run HPSPLIT in SAS EG (Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453976#M29261</link>
      <description>&lt;P&gt;Hey Chris:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply. Here are the SAS/STAT version of my SAS EG and PC SAS, after I run "&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;product_status&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; ; &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; ; &lt;/FONT&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAS EG:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For Base SAS Software ...&lt;/P&gt;&lt;P&gt;Custom version information: 9.4_M2&lt;/P&gt;&lt;P&gt;Image version information: 9.04.01M2P072314&lt;/P&gt;&lt;P&gt;For SAS/STAT ...&lt;/P&gt;&lt;P&gt;Custom version information: 13.2&lt;/P&gt;&lt;P&gt;For SAS/GRAPH ...&lt;/P&gt;&lt;P&gt;Custom version information: 9.4_M2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PC SAS:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For Base SAS Software ...&lt;/P&gt;&lt;P&gt;Custom version information: 9.4_M3&lt;/P&gt;&lt;P&gt;Image version information: 9.04.01M3P062415&lt;/P&gt;&lt;P&gt;For SAS/STAT ...&lt;/P&gt;&lt;P&gt;Custom version information: 14.1&lt;/P&gt;&lt;P&gt;For SAS/GRAPH ...&lt;/P&gt;&lt;P&gt;Custom version information: 9.4_M3&lt;/P&gt;&lt;P&gt;For SAS/FSP ...&lt;/P&gt;&lt;P&gt;Custom version information: 9.4_M3&lt;/P&gt;&lt;P&gt;For SAS/AF ...&lt;/P&gt;&lt;P&gt;Custom version information: 9.4_M3&lt;/P&gt;&lt;P&gt;For SAS/IML ...&lt;/P&gt;&lt;P&gt;Custom version information: 14.1&lt;/P&gt;&lt;P&gt;For SAS/ASSIST ...&lt;/P&gt;&lt;P&gt;Custom version information: 9.4&lt;/P&gt;&lt;P&gt;Image version information: 9.04.01M0P061913&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2018 16:29:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453976#M29261</guid>
      <dc:creator>jxc518</dc:creator>
      <dc:date>2018-04-13T16:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HPSPLIT: How can I run HPSPLIT in SAS EG (Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453984#M29262</link>
      <description>&lt;P&gt;Here's the &lt;A href="http://support.sas.com/documentation/cdl/en/stathpug/68163/HTML/default/viewer.htm#stathpug_whatsnew_sect006.htm" target="_self"&gt;What's New in HPSPLIT in SAS/Stat 14.1&lt;/A&gt;.&amp;nbsp; Maybe this explains some of the differences.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2018 17:23:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/453984#M29262</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2018-04-13T17:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HPSPLIT: How can I run HPSPLIT in SAS EG (Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/454038#M29263</link>
      <description>&lt;P&gt;I would expect to see something like this in the product_status output form "PC SAS" if installed:&lt;/P&gt;
&lt;PRE&gt;For High Performance Suite ...
   Custom version information: 2.2_M5
&lt;/PRE&gt;
&lt;P&gt;but then I don't run in a server mode so results may vary.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2018 19:35:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/454038#M29263</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-13T19:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HPSPLIT: How can I run HPSPLIT in SAS EG (Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/454041#M29264</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just checked my SAS EG and PC SAS. My SAS EG and PC SAS have different versions of High Performance Suite. PC SAS has better version (2.2_M4), while SAS EG has version of 2.2_M3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are my experiences of using PC SAS to run HPSPLIT. If I run HPSPLIT in&amp;nbsp; the local status in PC SAS, HPSPLIT runs smoothly. However, if I try to run HPSPLIT in the&amp;nbsp;server model&amp;nbsp;in PC SAS (i.e. using "RSUBMIT" and "ENDRSUBMIT"), I always run into various issues. It is similar to what I see in SAS EG (which is automatically in the server mode).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can we say that HPSPLIT can only work in the local status, NOT&amp;nbsp;in the server model?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAS EG:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For High Performance Suite ...&lt;/P&gt;&lt;P&gt;Custom version information: 2.2_M3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PC SAS:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For High Performance Suite ...&lt;/P&gt;&lt;P&gt;Custom version information: 2.2_M4&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;</description>
      <pubDate>Fri, 13 Apr 2018 19:45:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/454041#M29264</guid>
      <dc:creator>jxc518</dc:creator>
      <dc:date>2018-04-13T19:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: PROC HPSPLIT: How can I run HPSPLIT in SAS EG (Server)</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/454404#M29301</link>
      <description>&lt;P&gt;The difference is due to the level of software you're running on the server.&amp;nbsp; Your local SAS is more current than the remote server that you access via EG or SAS/CONNECT.&amp;nbsp; If you could manage to update your server version, then the same code would work as expected when running via EG.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 11:22:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-HPSPLIT-How-can-I-run-HPSPLIT-in-SAS-EG-Server/m-p/454404#M29301</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2018-04-16T11:22:11Z</dc:date>
    </item>
  </channel>
</rss>

