BookmarkSubscribeRSS Feed
fengyuwuzu
Pyrite | Level 9

for K-means cluster analysis, one can use proc fastclus like

proc fastclus data=mydata out=out maxc=4 maxiter=20;

and change the number defined by maxc=, and run a number of times,  then compare the Pseduo F and CCC values, to see which number of clusters gives peaks

 

or one can use proc cluster:

PROC CLUSTER data=mydata METHOD=WARD out=out ccc pseudo print=15;

to find the number of clusters with pesudo F, t2 and ccc.

and also look at junp in Semipartial R-Square.

 

sometimes these indications do not agree to each other. which indicator is more reliable? Thanks!

 

3 REPLIES 3
sbxkoenk
SAS Super FREQ

Hello,

 

If you are doubting between 2 k-values, you can use Beale's F-type statistic to determine the final number of clusters. It will tell you whether the larger solution is significantly better or not (in the latter case the solution with fewer clusters is preferable).

This technique is discussed in the "Applied Clustering Techniques" course notes.

 

You can also try something relatively new.

Tip: K-means clustering in SAS - comparing PROC FASTCLUS and PROC HPCLUS

https://communities.sas.com/t5/SAS-Communities-Library/Tip-K-means-clustering-in-SAS-comparing-PROC-...

 

For numeric variables, PROC HPCLUS provides the convenient NOC=ABC option to auto-select the number of clusters k based on the aligned box criterion (ABC). For each k value from MINCLUSTERS (default to 2) to MAXCLUSTERS, ABC compares the within-cluster dispersion of the results to that of a simulated reference distribution, and selects a value of k where the within-cluster dispersions of the data results and the reference distribution differ greatly.

 

See also:

Paper SAS313-2014

An Overview of Machine Learning with SAS® Enterprise Miner™

Patrick Hall, Jared Dean, Ilknur Kaynar Kabul, Jorge Silva

SAS Institute Inc.

https://support.sas.com/resources/papers/proceedings14/SAS313-2014.pdf

Find HPCLUS and ABC (keywords).

 

PROC HPCLUS is one of many High-Performance Procedures in SAS Enterprise MIner 13.2 and beyond.

 

Cheers,

Koen

 

fengyuwuzu
Pyrite | Level 9
Thank you! This reply is very informative! I will look into the Proc HPCLUS which sounds very interesting.
roopk
Calcite | Level 5
Hi,
Could you please guide how can we determine the optimal number of clusters for k-modes clustering in HPCLUS. I know that HPCLUS can determine the best value of K for numerical variables(noc=ABC) but is there any way to determine the best k for categorical variables using HPCLUS?

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 12450 views
  • 1 like
  • 3 in conversation