I am using the ggbarplot function from the ggpubr package to generate a bar plot. I would like to keep using ggpubr instead of ggplot2 because it offers a nice way to add grouped significance bars (http://www.sthda.com/english/articles/24-ggpubr-publication-ready-plots/76-add-p-values-and-significance-levels-to-ggplots/).
I would like to add my own manual error bars, as one would normally do with the ymax and ymin arguments in ggplot2:
geom_errorbar(aes(ymax = upper_errorbar, ymin = lower_errorbar))
Is there a way to manually add the equivalent ymin and ymax values for an error bar withing ggpubr? From a look through the manual I don't see a way but would like to be sure.
