Skip to content
Prev 163963 / 398506 Next

How to get Greenhouse-Geisser epsilons from anova?

Nils Skotara wrote:
Just do the same as before, but comparing mlmfitD to mlmfit:

anova(mlmfitD, mlmfit, X=~A+B, M=~A+B+C)
# or anova(mlmfitD, mlmfit, X=~1, M=~C), as long as things are balanced


gives the D:C interaction test (by testing whether the C contrasts 
depend on D). The four-factor interaction is

anova(mlmfitD, mlmfit, X=~(A+B+C)^2, M=~A*B*C)