fc3.sas

来自「those are some program of the sas system」· SAS 代码 · 共 11 行

SAS
11
字号
 title'单因素非均衡数据';
data ex;do a=1 to 3;input n @@;
do i=1 to n;input x @@;output;end;end;
cards;
8 21 29 24 22 25 30 27 26
10 20 25 25 23 29 31 24 26 20 21
6 24 22 28 25 21 26
;
proc glm;class a;model x=a;
means a/duncan;run;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?