indepks.sas
来自「SAS for Windows统计分析系统教程,里面有源码」· SAS 代码 · 共 19 行
SAS
19 行
options nodate nonumber;
data indepks;
input g n;
do i=1 to n;
input x @@;
output;
end;
cards;
1 5
0.15 0.30 0.40 0.40 0.50
2 6
1.20 1.35 1.40 1.50 1.90 2.30
3 6
0.50 1.20 1.40 2.00 2.20 2.20
4 4
1.50 1.50 2.50 2.50
;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?