Displaying 1 result from an estimated 1 matches for "provn".
Did you mean:
prove
2005 Aug 18
1
Error messages using LMER
...ls.
Now go back to my two-level poisson model with cross-classified model.
I've been testing various different model specificatios for the past
couple of days. Here are the models I tried:
1) Two level random intercept model with level-1 covariates only
m1 <- lmer(.D ~ offset(log(.Y)) + (1|provn) +(1|bcohort) + x1 + x2 ,
data, poisson, method="Laplace")
2) Two-level random intercept model with both level-1 and level-2
covariates, but no cross-level interactions:
m2 <- lmer(.D ~ offset(log(.Y)) + (1|provn) +(1|bcohort) + x1 + x2 +
z1 + z2, data, poisson, method="Laplace&q...