Hi I wanted to create a 'mega' linear mixed effects model with nested fixed effects (using the lme4 package) where the interaction effect of type and language was modelled within each level of brain region or Region-of-interest (ROI), type*language nested within ROI. The model did not converge, but there are many ROIs. Hence the number of observations ended up being very large (>4000), and the number of parameters are very large (>100).
m <- lmer(DV ~ ROI/(word*language) + cov1 + cov2 + cov3 + cov4 + cov1:word + cov1:language + cov2:word + cov2:language + cov3:language + cov4:language + (1|subject), data=df)
I was wondering if the number of parameters (>100) would actually be a problem.
There were many interaction effects included between covariates and the factors of interest, hence I used AICc to validate this model. I wanted to also check whether my understanding of AICc was valid. I used AICc because it was recommended for 'small sample sizes' where n/k < 40, n being the number of observations, k being the number of parameters.