Skip to content

Instantly share code, notes, and snippets.

@rheimann
Created May 6, 2013 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rheimann/5525909 to your computer and use it in GitHub Desktop.
Save rheimann/5525909 to your computer and use it in GitHub Desktop.
library(ggplot2)
ggplot(Twitter, aes(x=regiontxt, y=flecMC, ylab="Flesch Kincaid Index", xlab="Region", data=Twitter))
geom_point(colour="lightblue", alpha=0.1, position="jitter") +
geom_boxplot(outlier.size=1, alpha=0.1)
boxplot(flecMC~regiontxt, ylab="flecMC", xlab="regiontxt", data=Twitter)
@rheimann
Copy link
Author

rheimann commented May 6, 2013

R code for a Box and Whisker Plot with Scatter and Jitter. Used with Twitter data and Flesch-Kincaid Index for UMBC Webinar on Big Social Data with Abe Usher.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment