I'm trying to apply a linear mixed model to my dataset and I keep getting a strange message:
"fixed-effect model matrix is rank deficient so dropping 1 column / coefficient"
Right now my model code is:
m0 <- lmer(y ~ var1 + var2 + var3 + (1|var4))
where y is a numeric response variable and variables 1-4 are factors.
What could this possibly mean?