I'm running a linear mixed effects model using an lme4 function. I am then using a BIC function to look at whether adding more factors improves model fit.
Now, the way I've done it so far was using the following:
BIC(model1)
to get the BIC for each model. But when I run an ANOVA to compare them, the output also gives me the BIC values, among other things, which are slightly different to the ones I get from the BIC function. Neither of them make a lot of sense by the way, because they increase instead of dropping as I add ew factors, but that's a separate issue. Should I be worried about those differences? I'm new to this kind of thing and still trying to understand both R and the mixed effects model.
Any help would be appreciated.