Solved – Can we trust the results of PROC MIXED when the G matrix is not positive definite

mixed modelsas

PROC MIXED in SAS sometimes estimates a non-positive definite matrix of the random effects. However PROC MIXED nonetheless provides the estimates and the standard errors of the fixed effects in such a case. Can we consider that these estimates and standard errors are correct ?

Best Answer

You can make valid inferences on the fixed effects as long as the matrix $\mathbf{V}$ is positive definite, where $\mathbf{V}$ is the variance/covariance matrix of the implied marginal model.

Remember to specify the option nobound in the proc mixed statement.

Related Question