I have this barplot using ggpubr with the code
visualiseplot <- visualisepwc %>% add_xy_position(x = "Condition")
visualiseplot3 <- ggbarplot(data_sum, x = "Condition", y = "Q70.7", fill = "Condition") +
stat_pvalue_manual(visualiseplot, hide.ns = TRUE)
visualiseplot3
My graph I got from it looks like this:
I got a message saying I can only have a link to the picture so I hope you can see the image, but if you can't basically the significance levels are at the bottom of the graph and overlap, and I would like it to be above the graph at the top.
this is an example of how it should look but using a boxplot - it seems to work with boxplot but not barplot :
Any recommendations for what I should do? -
Without your data and the visualisepwc output, it is difficult to replicate the issue. However, you could avoid the issue altogether by using the ggsignif package. I've tried to replicate the aesthetics of the ggpubr plot as much as possible.