I've been reading about item response model guides for R and my model is :
mod <- glmer(response ~ 0 + item + (1|house_id),
family = binomial, nAGQ = 0)
and I want to investigate the random effects (which will be used as indices to compare the houses in the model above) using:
ranef(mod)["(Intercept)"]
I used bootstrap = 1000 for my model and obtained the CIs. However, without nAGQ = 0, it'll take 2 hours for my computer to process this. When nAGQ = 0 was activated, it took me 2 minutes. Some guides/opinion out there been saying that n = 0 only integrates over theta, while nAGQ = 1 integrate over theta and beta. Also, nAGQ = 0 claimed to be less accurate, but I think the bootstrapping process re-increase the power of the statistical inference of this model relates to its random effects.
I'm suspecting that this relates to coefficient like Y = B0 + B1X but I might be wrong. Does this referring to random and fixed effects and if I'm only interested for the random effects, does using nAGQ = 0 affect it?