I am trying to predict y with variables a, b and c. I have two models and I get different results depending on how I fit my model.
Model A is the simpler model, in which I exclude variable c. In model B, I include all main effects and possible interactions between the 3 variables. I am interested in the ab interaction that is bolded.
In model A, there is NO significant ab interaction.
- Model A: y ~ a + b + ab
In model B, there is a significant ab interaction, and the abc interaction is significant as well.
- Model B: y ~ a + b + c + ab + ac + bc + abc
Everything has been coded properly, such that the variables are mean centered or effect coded. This is a generalized (logistic) linear mixed effects model fit using glmer in R.
My question is, is there a significant ab interaction? If I trust model A, then I would say no, but if I trust model B, then I would say yes. Which model is more correct, or does it depend on details of the model? Why does adding a 3-way interaction make an originally non-significant two-way interaction (model A) significant (model B)?