Displaying 1 result from an estimated 1 matches for "exptdata".
Did you mean:
expdata
2002 Mar 17
0
Question about Linear Mixed-Models (in R)
...ength associated with that word.
The question:
Reading a couple of books (but mainly the Pinheiro and Bates book,
Mixed-Effects Models in S and S-PLUS), it seems that I simply need to say
the following to R, using the linear mixed effects library (nlme) in R:
lme1 <- lme(raw ~ case*wl, data = exptdata, random = ~1|subj)
Does this make sense in this case?
If so, the results of this are as follows:
> lme1 <- lme(raw ~ case*wl, data = exptdata, random = ~1|subj)
> anova(lme1)
numDF denDF F-value p-value
(Intercept) 1 305 260.71072 <.0001
case 1 305...