I know that this question sounds familiar to some other, but I believe the responses were not clear in those and were focused on REML models.
I would like to know if it is sensible to compare 2 or more modes that differ in their fixed effects for example
model1 <- lmer(DV ~ Var1 * Var2 + (1 +var2| var4), REML = FALSE)
model2 <- lmer(DV ~ Var5 * Var2 + (1 + var2| var4), REML = FALSE)
So the fixed effects part is different var1 vs var5.
Most answers I find refer to the fact that REML = TRUE
model cannot be compared using anova
when including different fixed effects, whereas ML
models can. But I also find papers and other responses suggesting that using ML (that is REML = FALSE), can only be used to compare different fixed effects if they are nested, which confuses me because I have always thought that what defines the nestedness is the random structure.
Appreciate any pointers/references.