安装ggplot2的开发版是否会覆盖常规版本?我需要特定包装的开发版本,但我不想搞砸我拥有的东西。我可以卸载开发或者只是重新安装常规版本,然后将覆盖开发版本。我用Google搜索,一无所获。感谢
答案 0 :(得分:5)
根据this answer,使用devtools sandbox时不会覆盖:
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
有关dev_mode的更多信息(比如指定R保存dev包的沙箱),请查看devtools documentation