Skip to content

Instantly share code, notes, and snippets.

@dainiuxt
Last active March 24, 2017 10:38
Show Gist options
  • Select an option

  • Save dainiuxt/731ffebc9672a600022a to your computer and use it in GitHub Desktop.

Select an option

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