Displaying 1 result from an estimated 1 matches for "response3".
Did you mean:
responses
2012 Apr 29
2
Xy plot help
Dear R group,
Tried to turn off the html in yahoo. So far not successful. Apologies!
I tried to get xyplot shrink fit for my mixed model. But, the mixed model line is not seen in the graph.
I would like to know if there is anything wrong with my code.
Thanks,
A.K.
(fm1 <- lmer(Response3 ~1+ Wavelength*Start_Resp*time + (1|resid) + (1+time|Subject_BDat), family=binomial,
data=Behavdat, REML=0))
df <- coef(lmList(Response ~ time | SubjectBDat, Behavdat))
fclow <- subset(df, '(Intercept)' < -4.1)
fchigh <- subset(df, '(Intercept)' > -4.1)
cc1 <-...