I have the following lmer()
syntax:
lmer(Y ~ A*B*C + COV + A:COV + B:COV + C:COV + (1|A:BLOCK))
where A
, B
and C
are the fixed effects and COV
is a continuous covariate. In a manuscript I am writing, I explained that I am using a linear mixed effects model with A
, B
and C
as the fixed effects, COV
as the covariate, also used in interactions with A
, B
and C
. I also modelled a random intercept for every observed combination of A
and BLOCK
to account for variation in blocks. I also list the outputs and lmer
model description in the appendix. The reviewer however, want the model to be described in a "conventional way" in the text. I am not 100% sure what the reviewer means by "conventional" but I am assuming he/she refers to the mathematical representation of the lmer
syntax above?
Alternatively, I was thinking something along this way (but I am not sure how to add the covariate and the random term, see the "$\dots$"):
$$Y_{ijk}=\mu+A_i+B_j+C_k+(AB)_{ij}+(AC)_{ik}+(BC)_{jk}+ ... +\epsilon_{ijk}$$
I appreciate any help regarding the translation of this lmer
syntax.