Last active
November 17, 2015 15:14
-
-
Save ejjunju/8971783 to your computer and use it in GitHub Desktop.
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
#A short script to help installing packages on the go | |
#Most useful if you are distributing a set of script files to people who may not be aware that the needed packages are not installed | |
#Also useful if you use many packages and want to organise their loading at the beginning of a script | |
need<-c("jpeg","tcltk2","zoo") #needed packages for a job | |
ins<-installed.packages()[,1] #find out which packages are installed | |
(Get<-need[which(is.na(match(need,ins)))]) # check if the needed packages are installed | |
if(length(Get)>0){install.packages(Get)} #install the needed packages if they are not-installed | |
eval(parse(text=paste("library(",need,")")))#load the needed packages |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment