The documentation of effects package says
"If asked, the effect function will compute effects for terms that have higher-order relatives in the model, averaging over those terms (which rarely makes sense)"
My question is why does it rarely make sense? What if we have a mixed model like y ~ f1*f2*f3 + (1|sub) and only the f1:f2 interaction is significant? Isn't it reasonable to ignore the 3-way interaction and look at the simpler (and significant) 2-way interaction(s)?
effectspackage averages over higher order terms in the model when looking at lower-level interactions – locus Nov 04 '18 at 17:42y ~ f1*f2*f3and the 3-way interaction is not significant, which factor will you drop? Would you fit a new model for each excluded factor,y~f1*f2,y~f1*f3andy~f2*f3? – locus Nov 04 '18 at 18:05f1:f4andf1:f2:f3interactions were significant? Thef1:f4interaction might still be interesting to examine even though it has higher-order terms. You cannot drop the 3-way interactions because off1:f2:f3. So the question remains, why doesn't it make sense to look atf1:f4, which is a lower-level interaction in the model? – locus Nov 05 '18 at 23:15f1:f2:f3was <0.10 (thef1:f2:f4,f1:f3:f4andf2:f3:f4were all >0.10). Should I exclude all 3-way interactions that were >0.10 from the model, like thisy ~ (main effects)+(2-way interactions)+f1:f2:f3or should I still include all 3-way interactions because at least one 3-way interaction (f1:f2:f3) was <0.10? – locus Nov 06 '18 at 21:28y ~ (main effects)+(2-way interactions) + (3-way interactions). Iff2:f3:f4is larger than 0.10 I exclude it and fit a new modely ~ (main effects)+(2-way interactions) + f1:f2:f3 + f1:f2:f4 + f1:f3:f4. Iff1:f3:f4is then larger than 0.10, I exclude it and fit a new modely ~ (main effects)+(2-way interactions) + f1:f2:f3 + f1:f3:f4, and so on, is that right? – locus Nov 06 '18 at 21:41