dotfiles/dot_config/r/Rprofile.r

11 lines
225 B
R
Raw Normal View History

2021-02-15 20:53:16 -05:00
.First <- function() {
## message("R is the best\n","working directory is:", getwd())
}
## Set CRAN mirror:
local({
r <- getOption("repos")
r["CRAN"] <- "https://cloud.r-project.org/"
options(repos = r, Ncpus = 8)
})