Я использовал R 3.5.3 с Rstudio 1.1.463 и install.package()
из CRAN
раньше.
Сегодня я попробовал checkpoint("2019-12-11",R.version = "3.5.3", verbose = TRUE)
, но многие пакеты установились не так, как показано ниже:
> library(checkpoint)
checkpoint: Part of the Reproducible R Toolkit from Microsoft
https://mran.microsoft.com/documents/rro/reproducibility/
> checkpoint("2019-12-11",R.version = "3.5.3", verbose = TRUE)
Scanning for packages used in this project
The knitr package is not available and Rmarkdown files will not be parsed
|======================================================================| 100%
- Discovered 289 packages
Unable to parse 16 files:
- R/win-library/3.5/checkpoint/examples/example_checkpoint.R
- R/win-library/3.5/checkpoint/examples/example_mranurl.R
- R/win-library/3.5/checkpoint/examples/example_remove.R
- R/win-library/3.5/checkpoint/examples/example_setSnapshot.R
- R/win-library/3.5/EnvStats/scripts/Manual/Chapter06.R
- R/win-library/3.5/ggthemes/examples/ex-calc_shape_pal.R
- R/win-library/3.5/ggthemes/examples/ex-few_shape_pal.R
- R/win-library/3.5/ggthemes/examples/ex-palette_pander.R
- R/win-library/3.5/ggthemes/examples/ex-tableau_shape_pal.R
- R/win-library/3.5/ggthemes/examples/ex-theme_economist.R
- R/win-library/3.5/htmlTable/examples/data-SCB_example.R
- R/win-library/3.5/MASS/scripts/ch16.R
- R/win-library/3.5/rex/doc/url_parsing.R
- R/win-library/3.5/rockchalk/examples/plot-Normal-2-clt.R
- R/win-library/3.5/rockchalk/examples/plot-Normal-3-plotmath.R
- R/win-library/3.5/stringr/doc/regular-expressions.R
Packages not available in repository and won't be installed:
- async
- countreg
- emx
- GLMMGibbs
- gWidgetsWWW2
- lme4.0
- mvtnormAPI
- Sxslt
- testRcppClass
- testRcppInterfaceExporter
- testRcppInterfaceUser
- testRcppModule
- tree
- yags
Installing packages used in this project
- Installing 'actuar'
actuar
- Installing 'AER'
AER
Вы можете найти несколько пакетов, которые установлены не очень хорошо Packages not available in repository and won't be installed
, например async,countreg,emx,GLMMGibbs,gWidgetsWWW2,lme4.0,mvtnormAPI,Sxslt,testRcppClass,testRcppInterfaceExporter,testRcppInterfaceUser,testRcppModule,tree,yags
.
Я думаю, что MRAN включает все пакеты CRAN, но не включает.
Например, я ищу https://mran.revolutionanalytics.com/packages, пакета с именем tree
нет, но я могу найти этот пакет в https://cran.r-project.org/web/packages/tree/
У меня возникают вопросы:
1. Включает ли MRAN все пакеты CRAN начиная с 2019 года?
2. Как установить пакеты not available in repository and won't be installed
через checkpoint
?