Install.packages("ggplot2") 安装旧版本 (1.0.0)
Install.packages("ggplot2") installing older version (1.0.0)
所以我从 devtools
(0.9.1 或其他)安装了旧版本的 ggplot2
和 install_version
以查看它是如何工作的 - 在之前安装的 2.0.0 版本上顺便一提。然后我升级了版本,它令人惊讶地给了我版本 1.0.0,而不是当前的 2.0.0。
现在,当我执行 install.packages("ggplot2")
时,我得到相同的 1.0.0。还从 Rstudio 菜单中选择“Check for package upgrades..
”项目,它告诉我 "All packages up to date"。
什么给? ggplot
最新版本不是2.0.0吗?这是我的会话信息:
R version 3.2.2 (2015-08-14)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 8 x64 (build 9200)
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] devtools_1.9.1 ggplot2_1.0.0 dplyr_0.4.3 shiny_0.12.2 RevoUtils_7.5.0
loaded via a namespace (and not attached):
[1] Rcpp_0.12.2 magrittr_1.5 MASS_7.3-43 munsell_0.4.2 colorspace_1.2-6
[6] xtable_1.8-0 R6_2.1.1 stringr_1.0.0 plyr_1.8.3 tools_3.2.2
[11] parallel_3.2.2 grid_3.2.2 gtable_0.1.2 DBI_0.3.1 htmltools_0.2.6
[16] assertthat_0.1 digest_0.6.8 reshape2_1.4.1 memoise_0.2.1 mime_0.4
[21] stringi_1.0-1 scales_0.3.0 jsonlite_0.9.19 httpuv_1.3.3 proto_0.3-10
>
这是它看到的存储库:
> AP <- available.packages()
> apdf <- data.frame(AP)
> unique(apdf$Repository)
[1] http://mran.revolutionanalytics.com/snapshot/2014-12-01/src/contrib
[2] http://www.stats.ox.ac.uk/pub/RWin/src/contrib
2 Levels: http://mran.revolutionanalytics.com/snapshot/2014-12-01/src/contrib ...
>
更新:
多亏了德克,我明白了发生了什么。看起来安装 RRO 包会重置我的 CRAN 存储库。我也能理解为什么必须这样做,尽管也许我应该得到警告。从这篇博客文章中,我也看到了如何修复它。 http://www.r-bloggers.com/permanently-setting-the-cran-repository/
运行
AP <- available.packages() # possibly with repo options
并检查结果集。
这就是你的 R session 对包的了解,它是
的函数
- R版本;你通常想要最新的系列(你有 3.2.*)
- 你的回购 select(你没有显示)
编辑: 我通常使用 options("repos")
检查我拥有哪些存储库,并且我倾向于从 Rprofile.site
控制它。但你似乎有 RevoR 并且我不知道 how/if 相互作用。
所以我从 devtools
(0.9.1 或其他)安装了旧版本的 ggplot2
和 install_version
以查看它是如何工作的 - 在之前安装的 2.0.0 版本上顺便一提。然后我升级了版本,它令人惊讶地给了我版本 1.0.0,而不是当前的 2.0.0。
现在,当我执行 install.packages("ggplot2")
时,我得到相同的 1.0.0。还从 Rstudio 菜单中选择“Check for package upgrades..
”项目,它告诉我 "All packages up to date"。
什么给? ggplot
最新版本不是2.0.0吗?这是我的会话信息:
R version 3.2.2 (2015-08-14)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 8 x64 (build 9200)
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] devtools_1.9.1 ggplot2_1.0.0 dplyr_0.4.3 shiny_0.12.2 RevoUtils_7.5.0
loaded via a namespace (and not attached):
[1] Rcpp_0.12.2 magrittr_1.5 MASS_7.3-43 munsell_0.4.2 colorspace_1.2-6
[6] xtable_1.8-0 R6_2.1.1 stringr_1.0.0 plyr_1.8.3 tools_3.2.2
[11] parallel_3.2.2 grid_3.2.2 gtable_0.1.2 DBI_0.3.1 htmltools_0.2.6
[16] assertthat_0.1 digest_0.6.8 reshape2_1.4.1 memoise_0.2.1 mime_0.4
[21] stringi_1.0-1 scales_0.3.0 jsonlite_0.9.19 httpuv_1.3.3 proto_0.3-10
>
这是它看到的存储库:
> AP <- available.packages()
> apdf <- data.frame(AP)
> unique(apdf$Repository)
[1] http://mran.revolutionanalytics.com/snapshot/2014-12-01/src/contrib
[2] http://www.stats.ox.ac.uk/pub/RWin/src/contrib
2 Levels: http://mran.revolutionanalytics.com/snapshot/2014-12-01/src/contrib ...
>
更新:
多亏了德克,我明白了发生了什么。看起来安装 RRO 包会重置我的 CRAN 存储库。我也能理解为什么必须这样做,尽管也许我应该得到警告。从这篇博客文章中,我也看到了如何修复它。 http://www.r-bloggers.com/permanently-setting-the-cran-repository/
运行
AP <- available.packages() # possibly with repo options
并检查结果集。
这就是你的 R session 对包的了解,它是
的函数- R版本;你通常想要最新的系列(你有 3.2.*)
- 你的回购 select(你没有显示)
编辑: 我通常使用 options("repos")
检查我拥有哪些存储库,并且我倾向于从 Rprofile.site
控制它。但你似乎有 RevoR 并且我不知道 how/if 相互作用。