can anyone tell me how to change the plot_model() function to show me the mean and standard deviation? I have looked up the documentation but I don't get it.
Thank you very much in advance!
# visual inspection of data
fit<-Focus_full
# Plot model
plot_Focus <- plot_model(fit, type = "pred", terms = c("Condition", "Group"))+ #geom_line(size = 1)
coord_cartesian(xlim = c(0.5, NA),ylim = c(0,5), clip = "off") + theme_tq() +scale_colour_tq() + scale_fill_tq(light) +
labs(
title = "",
y = "",
x = "") +
ggplot2::labs(colour = "Group") + scale_color_manual(values=c('Red','Black'))
plot_Focus<- plot_Focus + theme_apa()
plot_Focus