Skip to content

Instantly share code, notes, and snippets.

@codingneo
Created November 28, 2015 02:14
Show Gist options
  • Save codingneo/6339df17892b3f47548a to your computer and use it in GitHub Desktop.
Save codingneo/6339df17892b3f47548a to your computer and use it in GitHub Desktop.
[R] - Install R Package From GitHub
install.packages("devtools")

library(devtools)

dev_mode(on=T)

install_github("hadley/ggplot2")

# use dev ggplot2 now

# when finished do:

dev_mode(on=F)  #and you are back to having stable ggplot2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment