Finally, because we put the factor levels on the vertical axis so that their labels are clearly visible, we can also insert the f values as text by extending the horizontal axis a bit. ggplot(xta, aes(x = f, y = reorder(N, f), color = factor(c), size = c)) + geom_point() ...
library(ggstance)ggplot(diamonds,aes(x=carat,y=-0.5))+# horizontal box plotgeom_boxploth(aes(fill=cut))+# normal density plotgeom_density(aes(x=carat),inherit.aes=FALSE)+# vertical lines at Q1 / Q2 / Q3stat_boxploth(geom="vline",aes(xintercept=..xlower..))+stat_boxploth(geom=...