-
Notifications
You must be signed in to change notification settings - Fork 1
/
installer_R.R
59 lines (40 loc) · 1.83 KB
/
installer_R.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
###############################################
# code to install all DataSHIELD R packages
# and packages for GUI
###############################################
install.packages('devtools')
library(devtools)
devtools::install_github('https://github.com/datashield/dsBaseClient')
devtools::install_github('https://github.com/datashield/dsBase')
library(dsBase)
devtools::install_github('https://github.com/datashield/opal')
library(opal)
devtools::install_github('https://github.com/datashield/dsBaseClient', force = TRUE)
library(dsBaseClient)
devtools::install_github('https://github.com/datashield/dsStatsClient')#, force = TRUE)
library(dsStatsClient)
devtools::install_github('https://github.com/datashield/dsGraphicsClient')#, force = TRUE)
library(dsGraphicsClient)
devtools::install_github('https://github.com/datashield/dsModellingClient')#, force = TRUE)
#library(dsModellingClient)
#devtools::install_github('https://github.com/datashield/DSOpal')#, force = TRUE)
install.packages('shiny')
install.packages('rmarkdown')
install.packages('knitr')
install.packages('tinytex')
install.packages('metafor')
install.packages('shiny')
install.packages('shinyjs')
devtools::install_github(repo = 'https://github.com/lifecycle-project/ds-helper/', ref = 'completecases' )
library(dsHelper)
devtools::install_github('https://github.com/neelsoumya/dsSurvivalClient')
devtools::install_github('https://github.com/neelsoumya/dsSurvivalShiny')#, force = TRUE)
library(dsSurvivalShiny)
install.packages('simstudy')
url <- "https://cran.r-project.org/src/contrib/Archive/JohnsonDistribution/JohnsonDistribution_0.24.tar.gz"
pkgFile <- "JohnsonDistribution_0.24.tar.gz"
download.file(url = url, destfile = pkgFile)
install.packages(pkgs=pkgFile, type="source", repos=NULL)
unlink(pkgFile)
library(devtools)
devtools::install_github("bonorico/gcipdr")