Displaying 1 result from an estimated 1 matches for "fchigh".
Did you mean:
chih
2012 Apr 29
2
Xy plot help
...thing 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 <- as.data.frame(coef(fm1)$Subject)
names(cc1) <- c("A", "B","C","D","E","F","G","H","I","K","L","M")
df <- cbind...