Created
August 17, 2011 06:34
-
-
Save kohske/1150934 to your computer and use it in GitHub Desktop.
How to install development version of ggplot2
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
# install devtools | |
install.packages('devtools') | |
# install dependency of scales package | |
install.packages(c("RColorBrewer", "stringr", "dichromat", "munsell", "plyr", "colorspace")) | |
# load devtools | |
library(devtools) | |
# move to development mode | |
# scales and ggplot2 are installed in "~/R-dev" directory, so official version of ggplot2 are not removed. | |
dev_mode(TRUE) | |
install_github("scales") | |
# main branch of development | |
install_github("ggplot2", "hadley", "develop") | |
#install_github("ggplot2", "kohske", "feature/new-guides-with-gtable") | |
# load development version of ggplot2 | |
library(ggplot2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes even I am getting same error