There are many similar questions posted on this website but also a wide variety of conflicting answers, so I'm still unsure of the best way to proceed.
I have several independent but similar datasets and completed analyses, which compare multiple treatments on subjects over time. In many of these analyses, some treatments are significant while interactions of treatment*time are not. The interactions are meaningful and not trivial, so I'm apprehensive to simply remove them from my models as some answers suggest.
A typical formula (in R) for me is the following: count ~ treatment * time + block
,
where blocks are randomized complete block designs and almost always succeed in explaining excessive variation (and are therefore significant).
I generally will produce full models, reduced models, and a null model, and compare them by AIC to select the most parsimonious model for analysis. The full models almost always score the best, and are used in the analyses.
My understanding is that including a non-significant but non-trivial interaction of treatment*time will result in having conditional treatment effects. I've seen some answers recommend replacing these interactions with an additive model instead.
So my main questions are:
- Is it improper to report conditional treatment effects absent of significant interaction?
- Is it a good option to proceed with a fully additive model when the interaction is not significant?
Any other insights are also appreciated. It might be worth noting that my datasets are always zero-inflated and overdispersed Poisson distributions, so I generally use negative binomial hurdle-GLM's (pscl) and non-parametric longitudinal analyses (nparLD) packages for analysis.