I am trying to run a binomial GLMM using the glmer
command in R.
It is not clear to me whether I need to first select the best model or if I should just report the p-values that I get with the summary(my.model)
command.
If I need to select the best model first, which is the best option in R to compare two binomial GLMM built with glmer
? Is anova(my.model1,mymodel2,test="Chisq")
a valid way of comparing my models?
Thanks for your help, Jade
EDIT: thanks so if I understand I have to stick to the model that I defined when I planned my experiment and not get rid of any variables, even if they do not significantly improve my model (by comparing AIC for example)?