Skip to content

Instantly share code, notes, and snippets.

@dainiuxt
Last active March 24, 2017 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dainiuxt/731ffebc9672a600022a to your computer and use it in GitHub Desktop.
Save dainiuxt/731ffebc9672a600022a to your computer and use it in GitHub Desktop.
Install packages in R on demand (if require)
if (!require("data.table")) {
install.packages("data.table")
}
if (!require("reshape2")) {
install.packages("reshape2")
}
require("data.table")
require("reshape2")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment