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;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1348 views
  • 0 likes
  • 3 in conversation