clearbetty 发表于 2009-6-23 02:01 
我在做SAS 的时候
proc ttest data= data06.ttest;
class dnum;
var se_vest2 ae_vest2;
run;
这一步说我——
The CLASS variable has more than two levels
请问是什么意思啊?
Clearly here, t test can only be performed on the 2-level factor; but dnum has more than 2 levels. You can go to proc glm or anova for a F test on the >2 level variable.