BookmarkSubscribeRSS Feed
Chai_ch
Calcite | Level 5

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. 

2 REPLIES 2
ballardw
Super User

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.

stat_sas
Ammonite | Level 13

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;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1439 views
  • 0 likes
  • 3 in conversation