sas 数组
- 作者: 每日看段子
- 来源: 51数据库
- 2020-10-02
/*SAS统计软件*/
data test;
input x1-x4;
cards;
1 2 3 2
2 3 1.2 4
4 4 6 12
;
run;
data new;
set test;
array x _numeric_;
y=max(of x{*});
run;
我不会~~~但还是要微笑~~~:)
data test;
input x1-x4;
cards;
1 2 3 2
2 3 1.2 4
4 4 6 12
;
run;
data new;
set test;
array x _numeric_;
y=max(of x{*});
run;
我不会~~~但还是要微笑~~~:)
推荐阅读
