I am estimating random effects logit model using glmer
and I would like to report Marginal Effects for the independent variables. For glm
models, p
This is a much less technical answer, but perhaps provides a useful resource. I am a fan of the sjPlot
package which provides plots of marginal effects of glmer objects, like so:
library(sjPlot)
sjp.glmer(cfelr, type = "eff")
The package provides a lot of options for exploring a glmer model's fixed and random effects as well. https://github.com/strengejacke/sjPlot