Hello,
I created a boxplot using the following code:
ggplot(Data_all, aes(y = phase, x = reorder(category, phase), fill = reorder(category, phase))) +
theme_bw() +
geom_boxplot(outlier.colour = NULL, outlier.shape = 8, outlier.size = 2, lwd=1) +
scale_fill_manual(values = c("#FEE391", "#C6DBEF")) +
theme(plot.margin = unit(c(1.5,1.5,1.5,1.5), "cm"),
axis.text.x = element_blank(),
legend.title = element_blank(),
legend.text = element_text(size = 12))
How can I display the median and the upper/lower quartile?
Thank you in advance!