日本爱情动作片免费:聚类的k-means算法在SAS中如何实现?

来源:百度文库 编辑:神马品牌网 时间:2024/04/25 19:42:44

proc import out=WORK.wr
datafile='C:\Users\xiaomi\Desktop\pree.txt' dbms=tab replace;
/*delimiter='20'x;*/
DATAROW=2;
getnames=yes;
run;

proc print data=WORK.wr;
run;

proc fastclus
data=WORK.wr out=result maxc=3 /*standard*/ cluster=c;
var a1-a35;
run;