I have plotted a grouped Boxplot using ggplot with the code below:
ggplot(Data, `aes(x=Date$Result,y=Data$delta,fill=Data$ID))+geom_boxplot()+xlab("asdf")+ylab("fdsa")+guides(fill=guide_legend(title = "Results"))`
I would like to have a summarized (grouped) statistics containing mean, median, sd etc. as text displayed below the boxplot, how should I do that?