Created
December 9, 2016 12:10
-
-
Save cstich/752e1f8aa1576d8a692451e994398533 to your computer and use it in GitHub Desktop.
A function for installing R packages if you don't already have them installed.
This file contains 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
# Only install packages when you can't find them | |
try.install.load = function(pack.name, libpath=.libPaths()[1]) { | |
t = try(library(pack.name, lib.loc = libpath, character.only = TRUE)) | |
if("try-error" %in% class(t)) { | |
install.packages(pack.name, lib = libpath) | |
library(pack.name, lib.loc = libpath, character.only = TRUE) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment