I am an R beginner and even newer to lmer and mixed effects modelling.
If I have an lmer model of:
model <- lmer(C ~ Group * Time + (1|ID), REML = FALSE, data=data)
How do I access details of the model in order to plot them?
I know I can plot the residuals against the fitted values using either:
plot(model)
OR
plot(predict(model), resid(model))
But is there a way to access other elements/details of the model? What other model elements can be accessed? I am aware that I can use the function 'summary()' to look up the random and fixed effect. But what about plotting the residuals against other elements of the model e.g. residuals against fixed effects or random effect?