Created
September 19, 2019 14:16
-
-
Save grosscol/c3fa71541cb924c4247a32f848c80641 to your computer and use it in GitHub Desktop.
.Rprofile with custom lib path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
options( | |
repos = c(CRAN = "https://cran.rstudio.com/"), | |
browserNLdisabled = TRUE, | |
deparse.max.lines = 2) | |
# Set lib path | |
.libPaths( "~/R/x86_64-pc-linux-gnu-library/dev/" ) | |
if (interactive()) { | |
suppressMessages(require(devtools)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment