<?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: HPSPLIT node discription in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864656#M10457</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tree_example.png" style="width: 538px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81683i6AF0E9CCBEBBD416/image-size/large?v=v2&amp;amp;px=999" role="button" title="tree_example.png" alt="tree_example.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the output of HPSPLIT tree, is there any way to get an output option that shows the parent of node A is node 7, for all of the nodes in datasets?&lt;/P&gt;</description>
    <pubDate>Thu, 16 Mar 2023 19:42:16 GMT</pubDate>
    <dc:creator>akoohi</dc:creator>
    <dc:date>2023-03-16T19:42:16Z</dc:date>
    <item>
      <title>HPSPLIT node discription</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864608#M10455</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am interested in exact node association in the tree generated by hpsplit. For example, of the leaf node is 45 what is its parent node in the tree? Is there any dataset that I can look at as an output of the HPSPLIT tree that has this information?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arezou&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 16:44:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864608#M10455</guid>
      <dc:creator>akoohi</dc:creator>
      <dc:date>2023-03-16T16:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: HPSPLIT node discription</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864630#M10456</link>
      <description>&lt;P&gt;You may get a more useful example by providing data and or using or one of the examples provided by SAS with code similar to what you are using.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 18:09:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864630#M10456</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-03-16T18:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: HPSPLIT node discription</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864656#M10457</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tree_example.png" style="width: 538px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81683i6AF0E9CCBEBBD416/image-size/large?v=v2&amp;amp;px=999" role="button" title="tree_example.png" alt="tree_example.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the output of HPSPLIT tree, is there any way to get an output option that shows the parent of node A is node 7, for all of the nodes in datasets?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 19:42:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864656#M10457</guid>
      <dc:creator>akoohi</dc:creator>
      <dc:date>2023-03-16T19:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: HPSPLIT node discription</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864678#M10458</link>
      <description>&lt;P&gt;Using one of the SAS supplied examples for HPSPLIT to start with:&lt;/P&gt;
&lt;PRE&gt;ods graphics on;

proc hpsplit data=sashelp.baseball seed=123;
   class league division;
   model logSalary = nAtBat nHits nHome nRuns nRBI nBB
                     yrMajor crAtBat crHits crHome crRuns crRbi
                     crBB league division nOuts nAssts nError;
   output out=hpsplout;
   ods output wholetreeplot= work.wholetree
              zoomedtreeplot= work.zoomtree
   ;
run;
&lt;/PRE&gt;
&lt;P&gt;Looking at the Details section, ODS Graphics, of the online help for Proc Hpsplit the plot names for nodes are Wholetreeplot and ZoomedTreePlot. Each of these contains parent/child node information though a bit differently. The nodes labeled A are using hex notation instead of 10, B for 11 and so on. So you may need to think through the display a bit.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Mar 2023 07:19:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864678#M10458</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-03-19T07:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: HPSPLIT node discription</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864693#M10459</link>
      <description>&lt;P&gt;omg, you are a life saver. thank you so so much.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 21:13:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/HPSPLIT-node-discription/m-p/864693#M10459</guid>
      <dc:creator>akoohi</dc:creator>
      <dc:date>2023-03-16T21:13:49Z</dc:date>
    </item>
  </channel>
</rss>

