Hi all,
Can you please explain how the initial seed can be obtained so that clustering can be repeated every run using the FASTCLUS and HPCLUS procedures (https://communities.sas.com/t5/SAS-Communities-Library/Tip-K-means-clustering-in-SAS-comparing-PROC-... ?
Many thanks.
I couldn't follow the link you provided.
Try running a zero iteration clustering step to generate reusable seeds
proc fastclus data=sashelp.iris maxc=5 maxiter=0 outseed=seeds;
var SepalLength SepalWidth PetalLength PetalWidth;
run;
and then reuse those seeds in subsequent clustering runs
proc fastclus data=sashelp.iris maxc=3 maxiter=100 seed=seeds;
var SepalLength SepalWidth PetalLength PetalWidth;
run;
Hi PGStats,
Thank you for your response. The link is: https://communities.sas.com/t5/SAS-Communities-Library/Tip-K-means-clustering-in-SAS-comparing-PROC-...
I was wondering if there was a way to derive the optimal seed for the FASTCLUS and HPCLUS procedures combined, as demonstrated in part 3 of the link.
Many thanks,
Ria.
I don't have access to EM. But beware of this: The word seed has different meanings for FASTCLUS and HPCLUS. For the former it is a set of cluster centroids. For the later it is a starting number for pseudo-random number generation.
Part 3 of the link proposes a way to select the optimal number of clusters (k) using HPCLUS and then to feed that number into FASTCLUS to get better clusters. In my view, it is only worth doing that for large problems. For smaller problems, running FASTCLUS reperatedly over a range of k-values does the job.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
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.