📄 freq4.sas
字号:
options nodate nonumber;
data freq4;
do a=1 to 5;
do b=1 to 2;
do c=1 to 2;
input f@@;
output;
end;
end;
end;
cards;
4 62 2 224 9 33 12 390 4 26
33 330 6 9 65 362 6 5 93 301
;
proc freq;
weight f;
tables b*c/chisq cmh;
tables a*b*c/chisq cmh;
run;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -