Created
March 20, 2015 06:00
-
-
Save trengrj/f22965cfb70f898914ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ggplot(mpg, aes(x = cty, y = hwy, color = factor(cyl))) + | |
geom_jitter() + | |
labs(x = "City mileage/gallon", | |
y = "Highway mileage/gallon", | |
color = "Cylinders") + theme_ice() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment