Displaying 1 result from an estimated 1 matches for "asycov".
Did you mean:
asyc
2003 Dec 05
1
Can anyone help me reproduce this SAS Mixed output??
...2 4 1
35 2 4 2
33.7 2 5 1
33.9 2 5 2
27.7 3 1 1
28.5 3 1 2
30.7 3 2 1
30.4 3 2 2
26.9 3 3 1
26.3 3 3 2
29.7 3 4 1
30.2 3 4 2
29.2 3 5 1
28.9 3 5 2
29.2 4 1 1
29.3 4 1 2
32.4 4 2 1
32.4 4 2 2
27.7 4 3 1
28.9 4 3 2
31.8 4 4 1
30.7 4 4 2
30.3 4 5 1
29.9 4 5 2
;
proc mixed data = hw7 method = reml cl asycov;
class driver car;
model mpg =;
random driver car driver*car;
run;
quit;
## SELECTED OUTPUT FOLLOWS
Covariance Parameter Estimates
Cov Parm Estimate Alpha Lower Upper
driver 9.3224 0.05 2.9864 130.79
car 2.9343 0.05 1.0464...