Skip to content
Prev 246849 / 398506 Next

Anova with repeated measures for unbalanced design

Frodo Jedi <frodo.jedi <at> yahoo.com> writes:
I recommend that you find a copy of Pinheiro and Bates 2000 ...
No, it doesn't.
Something like

library(nlme)
lme1 <- lme(response~stimulus*condition,random=~1|subject,data=scrd)

or possibly

lme1 <- lme(response~stimulus*condition,random=~stimulus*condition|subject,
   data=scrd)

if your experimental design would allow you to estimate stimulus and condition
effects for each subject.

  Further questions along these lines should probably go to
the r-sig-mixed-model mailing list.