I have the following code:
ggbarplot(Text1, x = "Page", y = "IA_REGRESSION_OUT_COUNT",
color = "Modified", add = "mean_se", fill = "Modified",
width = .6, position = position_dodge(0.8)) +
stat_compare_means(method = "t.test", aes(group = Modified),
label = "p.signif", label.y = 0.3, na.rm = TRUE) +
labs(x = "Page number", y = "Avg Regression Count",
caption = "* = p value < 0.5; **** = p value < 0.0001") +
scale_color_manual(values=c("black", "black")) +
scale_fill_manual(values=c("#CCCCCC","#FFFFFF")) +
theme_minimal()
which produced this plot
However, since today this is what comes out, maybe because some updates?
Any idea how to fix this and have it back with the error bars for each column?


