Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

Already on GitHub? Sign in to your account

summary.lmList issues #377

Open
bbolker opened this Issue May 10, 2016 · 0 comments

Comments

Projects
None yet
1 participant
Owner

bbolker commented May 10, 2016

summary.lmList can fail when some groups have singular fits. This is really an upstream problem in nlme, since we copy the summary methods for our own use ...

p2 <- subset(Pixel, Dog %in% c(7,8,9))
p3 <- subset(Pixel, Dog %in% c(7,8))  ## without problematic case
library("nlme")
L1 <- lmList(pixel~day+I(day^2)|Dog, p2)
try(summary(L1))
L2 <- lme4::lmList(pixel~day+I(day^2)|Dog, p2)
try(summary(L2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment