BookmarkSubscribeRSS Feed
Edda
Calcite | Level 5

how to print a cluster analysis with a big dendrogram of 573 cases? or how to print these results in a table?

 

1 REPLY 1
Reeza
Super User

Check your log. An output data set should have been created by default. 

 

1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
57
58 title2 'Using METHOD=AVERAGE';
59 proc cluster data=sashelp.mileages(type=distance) method=average pseudo;
60 id City;
61 run;
 
NOTE: The input data set is a TYPE=DISTANCE data set. For such a data set, the procedure requires that the order of the rows match
the order of the variables.
NOTE: Input distances have been squared.
NOTE: The data set WORK.DATA1 has 19 observations and 11 variables.
NOTE: PROCEDURE CLUSTER used (Total process time):
real time 7.84 seconds
cpu time 0.64 seconds
 
You can control the name with the OUTTREE option.
 
title2 'Using METHOD=AVERAGE';
proc cluster data=sashelp.mileages(type=distance) method=average pseudo outtree=myGroups;
  id City;
run;

@Edda wrote:

how to print a cluster analysis with a big dendrogram of 573 cases? or how to print these results in a table?

 


hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1 reply
  • 1623 views
  • 0 likes
  • 2 in conversation