-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rpackage_installation.R
47 lines (36 loc) · 1.42 KB
/
Rpackage_installation.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
########################################
######### Package installation #########
#######################################
# Run script in local, fully updated R
# to ensure correction installations
# for running KNIME workflows
# Installation of ggplot:
install.packages("ggplot2")
packageVersion("ggplot2") # version 2.2.1 used during study
# Installation of reshape2:
install.packages("reshape2")
packageVersion("reshape2") # version 1.4.2 used during study
# Installation of Rserve
install.packages("Rserve")
packageVersion("Rserve") # version 1.7.3 used during study
# Installation of deSolve
install.packages("deSolve")
packageVersion("deSolve") # version 1.20 used during study
# Installation of MESS
install.packages("MESS")
packageVersion("MESS") # version 0.4.15 used during study
# Installation of dplyr
install.packages("dplyr")
packageVersion("dplyr") # version 0.7.2 used during study
# Installation of grid
install.packages("grid")
packageVersion("grid") # version 3.4.1 used during study
# Installation of fitdistrplus
install.packges("fitdistrplus")
packageVersion("fitdistrplus") # version 1.0.9 used during study
# Installation of tmvtnorm
install.packages("tmvtnorm")
packageVersion("tmvtnorm") # version 1.4.10 used during study
########## Location of R ############
R.home()
R.version.string # version 3.4.1 used for during study