7 lines
152 B
Plaintext
7 lines
152 B
Plaintext
#set a CRAN mirror
|
|
local({r <- getOption("repos")
|
|
r["CRAN"] <- "https://cloud.r-project.org/"
|
|
options(repos=r)
|
|
options(Ncpus=8)
|
|
})
|