BookmarkSubscribeRSS Feed
MR_E
Obsidian | Level 7

Hello to All,

 

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")

 

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?

 

Outstat example

proc fastclus data=FINAL_CLUSters maxclusters=7 maxiter=100 converge=0

mean=mean out=prelimvol OUTSTAT=OUTSTAT;

var VOLUME: LOGVAL_Mean: LOGVAL_Sum:;

run;

 

I have attached an illustration of the New clusters for your reference

3 REPLIES 3
MR_E
Obsidian | Level 7

Nobody?? i'm all alone....

 

Is there anything else i can provide to be more clear?

MarcHuber
SAS Employee

A simple solution is just to use PROC MEANS on your newly assigned data set.  Use and NWAY option and a CLASS statement with NEWCLUSTER as the classification variable.

 

proc means data=OUTSTAT nway;

    class NEWCLUSTER;

    var VOLUME: LOGVAL_Mean: LOGVAL_Sum:;

    output out=CENTROIDS mean=;

run;

 

sbxkoenk
SAS Super FREQ

Hello,

 

I have 3 solutions popping up in my mind:

 

1. PROC MEANS just as @MarcHuber describes!

2. EMiner: Give your NEWCLUSTER variable the SEGMENT role and use the SEGMENT PROFILER node in Enterprise Miner

3. PROC FASTCLUS

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;

 

Cheers,

Koen

 

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to choose a machine learning algorithm

Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 962 views
  • 0 likes
  • 3 in conversation