I am trying to do a lmer model with drop1, in each step with lowest AIC, and remodelling.
I learned that LMERConvenienceFunction
package can do it. But I am having difficulties with commanding the bfFixefLMER_F.fnc
How should I command it?
model:
b <- lmer(metric1~a+b+c+d+e+f+g+h+i+j+k+l+(1|X) + (1|Y), data = dataset)
drop1 (b, test="Chisq")