Created
January 4, 2018 18:37
-
-
Save abehmiel/6715bc32cbc1f2f7f646cd89f8c673bd to your computer and use it in GitHub Desktop.
Install useful R packages data science
This file contains hidden or 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
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