BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Lyson
Obsidian | Level 7

Hi Colleagues,

 

I have gone through Sphericity Tests in RMD using SAS Proc GLM, and have used SAS Proc Mixed  to analyse RM experiments as well. My question is how to pupulate the Greenhouse-Geisser (G-G) and the Huynh-Feldt (H-F) adjustments in Proc Mixed procedure SAS results if sphericity fails in the data set. Kindly share the code or explanation please.

1 ACCEPTED SOLUTION

Accepted Solutions
SteveDenham
Jade | Level 19

Specifying TYPE=HF in the REPEATED statement can accomplish this.  However, I suspect you missed the point I was trying to make.  Consider other covariance structures - I really doubt that HF will lead to the smallest corrected AIC - it will probably not be the best fit for your model.  This avoids making a sphericity assumption, which is really not necessary (see the chapter on Repeated Measures in any edition of SAS for Mixed Models for a discussion).

 

SteveDenham

View solution in original post

5 REPLIES 5
sbxkoenk
SAS Super FREQ

Hello,

 

Does this paper help?

Comparing the SAS GLM and MIXED Procedures for Repeated Measures
Russ Wolfinger and Ming Chang, SAS Institute Inc., Cary, NC
https://support.sas.com/rnd/app/stat/papers/mixedglm.pdf

 

( Russ Wolfinger is the original developer of PROC MIXED. )

 

Koen

Lyson
Obsidian | Level 7
@sbxkoenk Thank you so much. I have gone through Wolfinger & Chang's paper. They say I can get sphericity tests results by running both "TYPE=CS" and "TYPE=HF", where CS --> any covariance structure, and HF is Huynh-Feldt adjustment. So I have tried this code:

proc mixed data=D_univ cl ic covtest;
class CCI4 CHCI3 Time Flask ;
model Leakage=CCI4|CHCI3 ;
repeated / subject=Flask(CCI4*CHCI3) type=csh type=HF;
lsmeans CCI4 / pdiff cl adjust=tukey;
lsmeans CHCI3 / pdiff cl adjust=tukey;
run;

I am not sure if I interpreted Wolfinger & Chang very well by "running both TYPE=CS and TYPE=HF" correctly. Kindly check and assist before I falsely conclude mu results here!
SteveDenham
Jade | Level 19

One of the reasons for using PROC MIXED is that the F tests are valid whether or not the sphericity assumption is met, provided a valid covariance structure is fit and that there are no issues with the convergence.  If you are truly concerned about sphericity, then you should stick with PROC GLM, and not use ML/REML methods.

 

SteveDenham

Lyson
Obsidian | Level 7
@SteveDenham I get your point. I got a way to test for sphericity in Proc MIXED (from the posted source by Wolfinger). My next question is: If sphericity fails, how do we apply the H-F adjustment in Proc MIXED?
SteveDenham
Jade | Level 19

Specifying TYPE=HF in the REPEATED statement can accomplish this.  However, I suspect you missed the point I was trying to make.  Consider other covariance structures - I really doubt that HF will lead to the smallest corrected AIC - it will probably not be the best fit for your model.  This avoids making a sphericity assumption, which is really not necessary (see the chapter on Repeated Measures in any edition of SAS for Mixed Models for a discussion).

 

SteveDenham

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
  • 5 replies
  • 1076 views
  • 9 likes
  • 3 in conversation