Hey I'd like to access the exact positions of the boxplot when dodging is applied as in the case below:
testPlot <- ggplot(iris, aes(x=Species, y=Sepal.Width, fill=Petal.Width > 1)) +
geom_boxplot(position="dodge")
testPlot
This is important for instance so that one can add annotation directly above one box without fiddling. I can't find anything in str(testPlot).

