Skip to content

Instantly share code, notes, and snippets.

@abehmiel
Created January 4, 2018 18:37
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 abehmiel/6715bc32cbc1f2f7f646cd89f8c673bd to your computer and use it in GitHub Desktop.
Save abehmiel/6715bc32cbc1f2f7f646cd89f8c673bd to your computer and use it in GitHub Desktop.
Install useful R packages data science
install.packages(
c(
"dplyr", # data manipulation
"tidyr", # data manipulation
"rmarkdown", # data presentation
"knitr", # data presentation
"RODBC", # database tools
"RMySQL", # database tools
"RPostgreSQL", # database tools
"RSQLite", # database tools
"xlsx", # read excel files
"foreign", # read sas data format
"stringr", # string modification
"ggplot2", # plotting libraries
"data.table", # data manipulation
"jsonlite", # read/write json
"XML", # read/write xml
"devtools", # package generation
"testthat", # unittesting
"roxygen2" # documentation
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment