Advertisement
Guest User

Untitled

a guest
Nov 27th, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. ```r
  2. install.packages("devtools")
  3.  
  4. library(devtools)
  5.  
  6. dev_mode(on=T)
  7.  
  8. install_github("hadley/ggplot2")
  9.  
  10. # use dev ggplot2 now
  11.  
  12. # when finished do:
  13.  
  14. dev_mode(on=F) #and you are back to having stable ggplot2
  15. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement