gfg=data.frame(A=c(1,5,1,5,6,6,4,1,1,5,4,1,8,1,1),
B=c(1,8,6,6,6,4,5,7,8,1,7,4,4,1,6),
C=c(9,5,1,5,4,1,8,6,4,8,4,4,5,7,6))
gfg_mean=colMeans(gfg)
boxplot(gfg)
points(x = 1:ncol(gfg),y = gfg_mean, col = "green")
text(x = 1:ncol(gfg),y =gfg_mean - 0.20,
labels = paste("Mean:", round(gfg_mean, 1)), col = "green")