aov define F values computation
Posted
by essopapas
on Stack Overflow
See other posts from Stack Overflow
or by essopapas
Published on 2010-03-16T13:01:22Z
Indexed on
2010/03/16
15:21 UTC
Read the original article
Hit count: 135
anova
Greetings to all
This is my model: aov.fit<-aov(Y~A+B+C+D+E+A:C+A:E, data=dat)
In summary(aov.fit) all F values are comptuted by eg MS(A)/MS(Residuals). This is not correct (or what I want), except for F(B) and F(A:E). I suppose P values are not correct either.
Can I specify how the F computations will be done? I 'd like them to be like this: F(A)=MS(A)/MS(E), F(C)=MS(C)/MS(E), F(D)=MS(D)/MS(E), F(E)=MS(E)/MS(A:E), F(A:C)=MS(A:C)/MS(A:E)
thanks
© Stack Overflow or respective owner