forked from Kaggle/docker-rstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage_installs.R
40 lines (34 loc) · 1.53 KB
/
package_installs.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
library(devtools)
install_github("hadley/readr")
install_github("jkrijthe/Rtsne")
install_github("slowkow/ggrepel")
install_github("hadley/ggplot2") # ggthemes is built against the latest ggplot2
install_github("jrnold/ggthemes")
install_github("thomasp85/ggforce")
install_github("thomasp85/ggraph")
install_github("dgrtwo/gganimate")
install_github("BillPetti/baseballr")
install_github("dahtah/imager")
install_github("elbamos/largevis", ref="develop") # Using development branch for now, see https://github.com/elbamos/largeVis/issues/40
install_github("dgrtwo/widyr")
install_github("ellisp/forecastxgb-r-package/pkg")
install_github("rstudio/leaflet")
install_github("Microsoft/LightGBM", subdir = "R-package")
install_github("hrbrmstr/hrbrthemes")
install.packages("genderdata", repos = "http://packages.ropensci.org")
install.packages("openNLPmodels.en",
repos = "http://datacube.wu.ac.at/",
type = "source")
install_github("davpinto/fastknn")
install_github("mukul13/rword2vec")
#Packages for Neurohacking in R coursera course
#install.packages("oro.nifti")
#install.packages("oro.dicom")
#devtools::install_github("muschellij2/fslr")
#devtools::install_github("stnava/ITKR")
#install_github("stnava/ANTsRCore")
#devtools::install_github("stnava/ANTsR")
#devtools::install_github("muschellij2/extrantsr")
install.packages("h2o", type="source", repos=(c("http://h2o-release.s3.amazonaws.com/h2o/latest_stable_R"))) # install the latest stable version of h2o
install.packages("Rserve")
install.packages("RPostgreSQL")