DATA PGM2_5;
INPUT g$ n; do i=1 to n;
input x @@; output; end;
CARDS;
A 10
66 65 66 68 62 65 63 66 68 62
B 10
64 61 57 65 65 63 62 63 64 60
;
run;
ods html;
proc sort; by g; run;
proc univariate normal;
var x; by g; run;
proc ttest cochran;
class g; var x; run;
ods html close;
各位大神,标红的第一处cards后的值该如何理解?是否可以这样理解:A是放入变量g的,10对应g的长度,而后64 65……62是放入变量x的。
标红的第二处class g该怎么理解?