I am using sjPlot::plot_model
to plot a lmer
model. What are the default error bars?
Here is my model:
p <- lmer(dv~iv1+ factor(iv2)+ (1+iv1+factor(iv2)|subject))
Here is the plot model with no specification to the error intervals:
p <- plot_model(p3, type="pred", terms=c("iv1", "iv2"), title="Predicted Values")
Here is the plot model specifying 95% CI:
p <- plot_model(p3, type="pred", terms=c("iv1", "iv2"), ci.lvl=0.95, title="Predicted Values")
In the end, the graphs look very similar. I just want to confirm what the default (1) error intervals are representing because I forgot to initially specify and if they are 95% CI then I won't have to remake all of the graphs I created for several analyses that I've already conducted. Thank you for your help!