I am using proc glimmix and proc mixed to run a linear mixed model and am trying to look at the covariance matrix to see if it looks correct. How do I print it to the results?
Asked
Active
Viewed 410 times
1 Answers
0
Use the covb
option in the model
statement.
proc glimmix data=sashelp.cars;
model horsepower = msrp / covb;
run;

Stu Sztukowski
- 10,597
- 1
- 12
- 21