文档分类
4.1完成三种系统聚类方法,比较其聚类效果 4.1.1导入数据集
exec65
4.1.2类平均法聚类
proc cluster data=work.exec65 method=ave nosquare std; id nation;
proc tree horizontal; id nation; run;