Hi I've created this glmm with lme4, car package. After, trying many times I only get this two error. Please, can you help me to resolve this issue:
data_model$Diseased <- as.factor(data_model$Diseased)
data_model$Sex <- as.factor(data_model$Sex)
data_model <- na.omit(data_model)
full <- glmer(as.factor(Social_dist) ~ Sex + Diseased + SVL + Body_Temp
+ (1 | date) + (1| ID) + (1 | Location),
data = data_model, family = binomial)
Warning message:
In checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
Model is nearly unidentifiable: large eigenvalue ratio
- Rescale variables?
Thank you so much
Cheers,
Felix