zhaoyangprc 发表于 2009-10-16 22:01 
比如说proc glm;
class a b c;
model y=a b c/ss3;
random c;
run
proc mixed method=type3;
class a b c;
model y=a b;
random c;
run
对c这个random factor处理有啥区别?
The difference is how to handle the error structures. The GLM is very limited while mixed model can handle an array of structures.