BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Rick_SAS
SAS Super FREQ

To expand on @SteveDenham's remark, from a matrix perspective the mixed-modeling procedures in SAS are written to solve the general model Y=X*beta +Z*gamma + epsilon where gamma ~ MVN(0,G) and epsilon~MVN(0,R),

 

In this formulation, the input matrices are X, Z, G, and R. These correspond to the various statements in the mixed-modeling procedures. In the simplest examples, the MODELS stmt defines X, the RANDOM stmt defines Z, the options to the RANDOM stmt define G, and the REPEATED stmt defines R.  

 

If you ASSUME that this model holds (including that G and R are valid SPD covariance matrices), then it FOLLOWS that the marginal model is Y~MVN(X*beta, V) where V=ZGZ` + R is positive definite. Thus you never need to check whether V is SPD when G and R are valid covariance matrices.

 

When you use the NOBOUNDS option, you are declaring that you don't want SAS to enforce PD during estimation. I'm sure there are valid statistical reasons why this might be desired, but from a mathematical perspective it really muddies the waters.

 

 

 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 15 replies
  • 4139 views
  • 8 likes
  • 4 in conversation