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.

 

 

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 3804 views
  • 8 likes
  • 4 in conversation