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;

相关文章:

  • 2021-08-18
  • 2021-08-09
  • 2021-09-23
  • 2021-11-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-25
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案