0

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?

Sophia
  • 99
  • 5

1 Answers1

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