Last active
March 29, 2016 23:22
-
-
Save bheavner/a8709acf26e02a6fb5015e20fab12837 to your computer and use it in GitHub Desktop.
library install checking for short course
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
print("Hi from github :)") | |
print("Do you have randomForest?") | |
# do we want specific versions? | |
if(!require(randomForest, quiet = TRUE)){ | |
install.packages("randomForest", quiet=TRUE) | |
suppressWarnings(library(randomForest)) | |
} | |
print("You do now!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment