Hello everyone, I'm trying to do a clustering analysis. Here is my code and output from PROC CLUSTER: PROC CLUSTER Data=Dist METHOD=average OUTTREE=tree PSEUDO print=15;
id record_id_char;
RUN; I have 240 observations, and my question is if I choose 4 clusters, how do I know each observation was assigned to which clusters? I'd like to create a new categorical variable called "cluster" which contains this information for each observation. As you can see there is an output dataset called "tree" from the above code. The first 10 print of "tree" is below: It shows how each observation was assigned. But it is hard to track one by one. Is there a way to get this information from the output? Please help. Thanks in advance, Kenny
... View more