I am currently trying to compute a linear mixed effects model and am unsure about which interaction terms to include or not include.
For example, I have the following model, where I have included species richness as the response variable (richness; specified per time point and mesocosm), the sampling method (data.type), sampling time point (time.point), mesocosm pH (pH), and their interactions as fixed effects, and individual mesocosms (mesocosm) as a random effect.
model <- lmer(richness ~ 0 + data.type + time.point + pH + data.type:time.point + pH:time.point + pH:data.type + pH:time.point:data.type + (1|mesocosm), data)
I then computed this model, and according to the Pr(>|t|) results generated, should I then elect to only include model interactions that are significant (i.e., $p < 0.05$)? Would this be the correct way to go about things?