search for: anovaalldata

Displaying 2 results from an estimated 2 matches for "anovaalldata".

2005 Oct 27
1
aov() and lme()
Sorry for reposting, but even after extensive search I still did not find any answers. using: summary(aov(pointErrorAbs~noOfSegments*turnAngle+Error(subj/(noOfSegments+turnAngle)), data=anovaAllData )) with subj being a random factor and noOfSegments and turnAngle being fixed factors, I get the following results: ---------------------------------------------- Error: subj Df Sum Sq Mean Sq F value Pr(>F) Residuals 17 246606 14506 Error: subj:noOfSegments Df Su...
2005 Oct 26
0
another ANOVA/LM question
Sorry for posting a possibly stupid question. I am using aov() for calculating ANOVA as follows: summary(aov(depVar~factor1*factor2+Error(subject/(factor1+factor2)), data=anovaAllData)) and usually all works fine. How exactly the call has to look if I want to use lm() directly to obtain the same results. The problem is that due to several reasons I am missing single data points such that I end up with an unbalanced design. From earlier posting I learned that lm() is the wa...