# If you don't have the ggplot library, run install.packages('ggplot2', dependencies = TRUE)
library(ggplot2)
# I'll create some fake data (in your case you'll be reading your real data into R)
df <- data.frame(months = rep(c("Jan", "Feb", "Mar"), 4), values = rnorm(12))
ggplot(df, aes(months, values)) + geom_point(size =3, aes(shape = months), position = "jitter")
Here's the output plot (I've done a couple more things to make the output cleaner (but not shown here.)You are not logged in, either login or create an account to post comments
posted by dfriedman at 10:27 PM on December 26, 2012