forked from computorg/template-computo-R
-
Notifications
You must be signed in to change notification settings - Fork 0
/
r-addons.R
26 lines (23 loc) · 921 Bytes
/
r-addons.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
## ====================================================
## R packages needed not available via mini-conda
## ====================================================
## ____________________________________________________
## Setting-up the source repository
local({
r <- getOption("repos")
r["CRAN"] <- "https://cloud.r-project.org"
options(repos = r)
})
## ____________________________________________________
## ____________________________________________________
## Additional R packages needed by the user (CRAN)
install.packages("bookdown")
install.packages("mvtnorm")
install.packages("xtable")
install.packages("ranger")
install.packages("parallel")
## ____________________________________________________
## ____________________________________________________
## Additional R packages needed by the user ()
## remotes::install_github("user/package")
## ____________________________________________________