<?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: Produce Cluster stats on Manually updated Clusters in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/Produce-Cluster-stats-on-Manually-updated-Clusters/m-p/341197#M5094</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have 3 solutions popping up in my mind:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. PROC MEANS just as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/40481"&gt;@MarcHuber&lt;/a&gt;&amp;nbsp;describes!&lt;/P&gt;
&lt;P&gt;2. EMiner: Give your&amp;nbsp;&lt;SPAN&gt;NEWCLUSTER variable the SEGMENT role and use the SEGMENT PROFILER node in Enterprise Miner&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;3. PROC FASTCLUS&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=mylib.myCLUSds; by NEWCLUSTER; run;
proc fastclus data=mylib.myCLUSds 
              maxclusters=1 maxiter=0 
              outstat=work.abc outseed=work.def;
			  /* OUTSEED= or MEAN= */
 id name;
 by NEWCLUSTER;
 var _NUMERIC_;
 *var VOLUME: LOGVAL_Mean: LOGVAL_Sum: ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 15 Mar 2017 14:20:32 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2017-03-15T14:20:32Z</dc:date>
    <item>
      <title>Produce Cluster stats on Manually updated Clusters</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Produce-Cluster-stats-on-Manually-updated-Clusters/m-p/338752#M5064</link>
      <description>&lt;P&gt;Hello to All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to obtain the centre points for my newly generated Clusters (as i will need it for future reporting cluster scoring), of which i have manually intervened and created additional clusters from the original PROC FASTCLUS. (7 New clusters identified under the Variable "NEWCLUSTER")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, i know if i used the original clusters i could use the OUTSTAT= option, HOWEVER as i have since split the clusters and created new ones i now require the centre points and stats for these also. How can i get the stats for the final cluster set please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Outstat example&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;fastclus&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=FINAL_CLUSters &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;maxclusters&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;7&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;maxiter&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;100&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;converge&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;mean&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=mean &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;out&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=prelimvol &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;OUTSTAT&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=OUTSTAT;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;var&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; VOLUME: LOGVAL_Mean: LOGVAL_Sum:;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;I have attached an illustration of the New clusters for your reference&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2017 11:25:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Produce-Cluster-stats-on-Manually-updated-Clusters/m-p/338752#M5064</guid>
      <dc:creator>MR_E</dc:creator>
      <dc:date>2017-03-07T11:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Produce Cluster stats on Manually updated Clusters</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Produce-Cluster-stats-on-Manually-updated-Clusters/m-p/340341#M5088</link>
      <description>&lt;P&gt;Nobody?? i'm all alone....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anything else i can provide to be more clear?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2017 09:25:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Produce-Cluster-stats-on-Manually-updated-Clusters/m-p/340341#M5088</guid>
      <dc:creator>MR_E</dc:creator>
      <dc:date>2017-03-13T09:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Produce Cluster stats on Manually updated Clusters</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Produce-Cluster-stats-on-Manually-updated-Clusters/m-p/341189#M5093</link>
      <description>&lt;P&gt;A simple solution is just to use PROC MEANS on your newly assigned data set. &amp;nbsp;Use and NWAY option and a CLASS statement with NEWCLUSTER as the classification variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc means&amp;nbsp;data=OUTSTAT nway;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; class NEWCLUSTER;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; var VOLUME: LOGVAL_Mean: LOGVAL_Sum:;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; output out=CENTROIDS mean=;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2017 13:52:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Produce-Cluster-stats-on-Manually-updated-Clusters/m-p/341189#M5093</guid>
      <dc:creator>MarcHuber</dc:creator>
      <dc:date>2017-03-15T13:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Produce Cluster stats on Manually updated Clusters</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Produce-Cluster-stats-on-Manually-updated-Clusters/m-p/341197#M5094</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have 3 solutions popping up in my mind:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. PROC MEANS just as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/40481"&gt;@MarcHuber&lt;/a&gt;&amp;nbsp;describes!&lt;/P&gt;
&lt;P&gt;2. EMiner: Give your&amp;nbsp;&lt;SPAN&gt;NEWCLUSTER variable the SEGMENT role and use the SEGMENT PROFILER node in Enterprise Miner&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;3. PROC FASTCLUS&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=mylib.myCLUSds; by NEWCLUSTER; run;
proc fastclus data=mylib.myCLUSds 
              maxclusters=1 maxiter=0 
              outstat=work.abc outseed=work.def;
			  /* OUTSEED= or MEAN= */
 id name;
 by NEWCLUSTER;
 var _NUMERIC_;
 *var VOLUME: LOGVAL_Mean: LOGVAL_Sum: ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Koen&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2017 14:20:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Produce-Cluster-stats-on-Manually-updated-Clusters/m-p/341197#M5094</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2017-03-15T14:20:32Z</dc:date>
    </item>
  </channel>
</rss>

