I want to find the summary statistics(Min,Max,Median,Q1 & Q3 behind my boxplot as well as std.dev, mean, variance. I removed outliers so summary(txdata2) doesn't quite work.
I've attempted using summary_stat() and just the stat() functions, but I likely am using them incorrectly.
txplot <- ggplot(data = txdata2,aes(x= inputx,y= inputy,))
txplot +
geom_jitter(aes(size = ML.S, color = BPR.GRP.A)) +
geom_boxplot(alpha = 0.6, outlier.colour = "NA") +
#Nondata Ink
xlab("BPR Group") +
ylab("mL's Per Order") +
ggtitle("Sales Concentrations") +
facet_grid(FISCAL.YR~.) +
coord_cartesian(ylim = c(0,250))