Any idea how to draw stripchart in ggplot2? The example in base R is pasted below.
stripchart(iris$Sepal.Length, col = "red", method="stack")
You can use geom_dotplot:
geom_dotplot
library(ggplot2) ggplot(iris, aes(x = Sepal.Length)) + geom_dotplot()