Created
July 7, 2014 09:21
-
-
Save narulkargunjan/bedbf7fd1ef6c9156384 to your computer and use it in GitHub Desktop.
A crude package listing for setting up a data guy's R environment
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
#Below is the list of packages that are typically required for any data guy! | |
#Beware 1 - THIS IS, BY NO MEANS, A "COMPLETE" LIST, JUST WHAT I FEEL APPROPRIATE. | |
#Beware 2 - MAKE SURE INTERNET CONNECTION IS FAST AND RUNNING FOR ALL THE TIME. | |
install.packages("vars") | |
install.packages("forecast") | |
install.packages("ggplot2") | |
install.packages("rattle") | |
install.packages("caret") | |
install.packages("e1071") | |
install.packages("randomForestSRC") | |
install.packages("extraTrees") | |
install.packages("quantmod") | |
install.packages("devtools") | |
install.packages("twitteR") | |
install.packages("Rserve") | |
install.packages("survival") | |
install.packages("beepr") | |
install.packages("knitr") | |
install.packages(c("nnet", "neuralnet")) | |
install.packages("RWeka") | |
install.packages("arules") | |
install.packages("arulesViz") | |
install.packages(c("arulesNBMiner", "arulesSequences")) | |
install.packages(c("RGtk2", "RGtk2Extras")) | |
install.packages(c("flexclust", "flexsurv")) | |
install.packages("ellipse") | |
install.packages(c("doBy", "doSNOW")) | |
install.packages(c("fBasics", "fpca", "gplots", "Hmisc", "kernlab", "mice", "miceadds")) | |
install.packages(c("network", "networkDynamic", "networkDynamicData")) | |
install.packages(c("party", "partykit", "playwith", "pmml", "pmmlTransformations", "rggobi", "ROCR", "RODBCext")) | |
install.packages(c("outliers", "OutlierDC", "OutlierDM")) | |
install.packages(c("rEMM", "remMap")) | |
install.packages(c("ada", "adabag")) | |
install.packages("ipred") | |
library(devtools) | |
install_github('rCharts', 'ramnathv') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'll take some more time out to categorize the above list for future ease of comprehension. Apologies for cluttered work.