导航

SAS PROC MEANS 输出每个变量的描述性统计量

Posted on   高山老王  阅读(3623)  评论(0编辑  收藏  举报

 

ods listing close;
ods output summary=class;
proc means data=CC.Model_Params stackods n mean std min max maxdec=2;
var &VarList.;
run;
ods output close;
ods listing;

PROC PRINT DATA=class;
RUN;

努力加载评论中...
点击右上角即可分享
微信分享提示