I am trying to fit the following generalized linear mixed-effects model for the negative binomial family. I have 18 predictors but the model only uses 13 predictors and leaves two out. If I fit the model for 17 predictors, it still fits the model using 13 variables but now includes one that was not used before.
I am not sure why the model does not use all variables in the model and strictly uses 13 variables. All predictors are numeric except one.
model1 = glmer.nb(y ~ x1 + x2 + x3 + ... + x18 + (1|x19), data = my.data)
Note: I am trying to fit interrupted time series model.