I am using PROC CLUSTER , ward method to cluster countries (N=214). After I consider CCC to select appropriate number of cluster, I would like to create a new column telling which cluster each country is in. What is the code (or where to click) for creating such variable as a new column in data set? Thank you.
You might try sharing the code you are using.
Note the PROC Cluster by default creates relationship trees of values.
Perhaps you want to look at Proc FASTCLUS as that generally assigns each value to a single cluster.
Hi,
Below are the steps to create a cluster variable:
/* wards method cluster analysis */
proc cluster data=have method=ward outtree=tree ccc ;
var a b c;
id country;
run;
/* PROC TREE prints the tree diagram, also output a data set, called "want" that contains variable containing four clusters --- */
proc tree data=tree out=want nclusters=4;
id country;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.