Displaying 1 result from an estimated 1 matches for "fita1".
Did you mean:
fit1
2005 Nov 30
1
How to solve allocation problem in lme() analysis?
Hello!
I am running analysis on the data from 4 experiments, with approximately
4600 rows (cases). My working model is:
fitA1 = lme(RT~F1+F2+L,random=~1|Experiment/Subject,data=data)
Model works very fine, but if I try to check whether the effect of L
depends on Experiments/Subjects with:
fitA2 = lme(RT~F1+F2+L,random=~1+L|Experiment/Subject,data=data)
[with the idea to make: anova(fitA1,fitA2)]
> analysis crashes wi...