Created
December 10, 2017 21:39
-
-
Save rrodrigueznt/7282ca99140a19626741a8523425b2c8 to your computer and use it in GitHub Desktop.
Grammar of Graphics learning
This file contains 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
# | |
## Introduction to R | |
## by | |
# | |
## Grammar of Graphics | |
## https://ramnathv.github.io/pycon2014-r/visualize/ggplot2.html | |
# | |
data(tips, package = 'reshape2') | |
library(ggplot2) | |
qplot(total_bill, tip, data = tips, geom = "point") | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment