Skip to content

Instantly share code, notes, and snippets.

@cstich
Created December 9, 2016 12:10
Show Gist options
  • Save cstich/752e1f8aa1576d8a692451e994398533 to your computer and use it in GitHub Desktop.
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.
# 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