I have used ggpaired() from ggpubr to plot my scattered data with a connecting line in my groups.
I would like to know what are the boxplots plotting? i.e mean, median, ci, sd, se...?
I have used:
myplt<- ggpaired(data.plt, x = "run", y = "meangamma", color='run',
line.color = "gray", line.size = 0.4)+
facet_grid(~ROI, scales='free_x',labeller = labeller(ROI=as_labeller(areas.labs)))+
guides(col=FALSE)+
scale_color_manual(values=c('#FDAE61','#ABD9E9'))+
scale_fill_manual(values=c('#FDAE61','#ABD9E9'), guide='none')+
theme_classic()+
theme(strip.background = element_blank())+
theme(aspect.ratio = 2)
However, I would like my boxplots to show mean +- confidence intervals connecting two scatter plots.