Skip to content
Prev 2528 / 20628 Next

unreplicated repeated measures

This would be your model:

m1<-lmer(lncon~Treatment+(1|month),data=dataset)

you did not manipulate the "month" variable thus it should not be in
the fixed effects side of the formula.

Now is treatment a coded variable for multiple factors? If so why are
you not using the actual factors like:

m2<-lmer(lncon~FactorA+FactorB+(1|month/(FactorA+FactorB)),data=dataset)


On Tue, Jun 23, 2009 at 1:29 PM, Christine
Griffiths<Christine.Griffiths at bristol.ac.uk> wrote: