Displaying 1 result from an estimated 1 matches for "rikz".
Did you mean:
rik
2011 Sep 22
2
comparing mixed binomial model against the same model without random effect
Hi everybody,
If I am correct, you can compare a model with random effect with the same model without the random effect by using the nlme function, like this:
no.random.model <- gls(Richness ~ NAP * fExp,
method = "REML", data = RIKZ)
random.model <- lme(Richness ~NAP * fExp, data = RIKZ,
random = ~1 | fBeach, method = "REML")
anova(no.random.model,random.model)
But, nlme is valid only for the gaussian family, isn't it? In my case I have a mixed model with binomial family, like this:
random.model &l...