How do I create a categorical scatterplot in R like boxplots?
Does anyone know how to create a scatterplot in R to create plots like these in PRISM's graphpad: I tried using boxplots but they don't display the data the way I want it. These column scatterplots that graphpad can generate show the data better for me. Any suggestions would be appreciated. csgillespie As @smillig mentioned, you can achieve this using ggplot2. The code below reproduces the plot that you are after pretty well - warning it is quite tricky. First load the ggplot2 package and generate some data: library(ggplot2) dd = data.frame(values=runif(21), type = c("Control", "Treated",