Skip to content

Instantly share code, notes, and snippets.

@rrodrigueznt
Created December 10, 2017 21:39
Show Gist options
  • Save rrodrigueznt/7282ca99140a19626741a8523425b2c8 to your computer and use it in GitHub Desktop.
Save rrodrigueznt/7282ca99140a19626741a8523425b2c8 to your computer and use it in GitHub Desktop.
Grammar of Graphics learning
#
## 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