library("lme4")
data(sleepstudy)
fit1 <- lmer(Reaction ~ Days + (1|Subject), sleepstudy)
To visualise the random effect,
library(sjPlot)
plot_model(fit1,type = "re",facet.grid = FALSE)
In my orginal data, I have three random groups. However, if I want to plot the random effects, they all come in three separate plots. How can I put them in all single plot in 1 X 3 panel or 3 X 1 panel.