-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.R
executable file
·125 lines (125 loc) · 3.51 KB
/
packages.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Set default repo from erasche/docker-rstudio-notebook
# http://stackoverflow.com/questions/8475102/set-default-cran-mirror-permanent-in-r
# options(repos=structure(c(CRAN="https://cran.rstudio.com/")))
# Update installed packages
# update.packages(ask=FALSE, checkBuilt=TRUE)
# Install some packages
# devtools::install_version('d3heatmap', version='0.6.0')
# install.packages(c('shinyBS', 'shinydashboard', 'shinyWidgets', 'BBmisc', 'gtools', 'htmlwidgets', 'RColorBrewer' ))
for (info in list(
list("askpass", "1.1"),
list("assertthat", "0.2.1"),
list("backports", "1.2.0"),
list("base64enc", "0.1-3"),
list("BBmisc", "1.11"),
list("BH", "1.72.0-3"),
list("brew", "1.0-6"),
list("brio", "1.1.0"),
list("callr", "3.5.1"),
list("checkmate", "2.0.0"),
list("cli", "2.1.0"),
list("clipr", "0.7.1"),
list("clisymbols", "1.2.0"),
list("colorspace", "2.0-0"),
list("commonmark", "1.7"),
list("covr", "3.5.1"),
list("crayon", "1.3.4"),
list("crosstalk", "1.1.0.1"),
list("curl", "4.3"),
list("d3heatmap", "0.6.0"),
list("dendextend", "1.14.0"),
list("desc", "1.2.0"),
list("devtools", "2.3.2"),
list("diffobj", "0.3.2"),
list("digest", "0.6.27"),
list("docopt", "0.7.1"),
list("DT", "0.16"),
list("ellipsis", "0.3.1"),
list("evaluate", "0.14"),
list("fansi", "0.4.1"),
list("farver", "2.0.3"),
list("fastmap", "1.0.1"),
list("fs", "1.5.0"),
list("ggplot2", "3.3.2"),
list("gh", "1.1.0"),
list("git2r", "0.27.1"),
list("glue", "1.4.2"),
list("gridExtra", "2.3"),
list("gtable", "0.3.0"),
list("gtools", "3.8.2"),
list("highr", "0.8"),
list("htmltools", "0.5.0"),
list("htmlwidgets", "1.5.2"),
list("httpuv", "1.5.4"),
list("httr", "1.4.2"),
list("ini", "0.3.1"),
list("isoband", "0.2.2"),
list("jsonlite", "1.7.1"),
list("knitr", "1.30"),
list("labeling", "0.4.2"),
list("later", "1.1.0.1"),
list("lazyeval", "0.2.2"),
list("lifecycle", "0.2.0"),
list("littler", "0.3.12"),
list("magrittr", "2.0.1"),
list("markdown", "1.1"),
list("memoise", "1.1.0"),
list("mime", "0.9"),
list("munsell", "0.5.0"),
list("openssl", "1.4.3"),
list("pillar", "1.4.6"),
list("pkgbuild", "1.1.0"),
list("pkgconfig", "2.0.3"),
list("pkgload", "1.1.0"),
list("plyr", "1.8.6"),
list("png", "0.1-7"),
list("praise", "1.0.0"),
list("prettyunits", "1.1.1"),
list("processx", "3.4.4"),
list("promises", "1.1.1"),
list("ps", "1.4.0"),
list("purrr", "0.3.4"),
list("R6", "2.5.0"),
list("rcmdcheck", "1.3.3"),
list("RColorBrewer", "1.1-2"),
list("Rcpp", "1.0.5"),
list("rematch2", "2.1.2"),
list("remotes", "2.2.0"),
list("reshape2", "1.4.4"),
list("rex", "1.2.0"),
list("rlang", "0.4.8"),
list("rmarkdown", "2.5"),
list("roxygen2", "7.1.1"),
list("rprojroot", "2.0.2"),
list("rstudioapi", "0.13"),
list("rversions", "2.0.2"),
list("scales", "1.1.1"),
list("sessioninfo", "1.1.1"),
list("shiny", "1.5.0"),
list("shinyBS", "0.61"),
list("shinydashboard", "0.7.1"),
list("shinyWidgets", "0.5.4"),
list("sourcetools", "0.1.7"),
list("stringi", "1.5.3"),
list("stringr", "1.4.0"),
list("sys", "3.4"),
list("testthat", "3.0.0"),
list("tibble", "3.0.4"),
list("tinytex", "0.27"),
list("usethis", "1.6.3"),
list("utf8", "1.1.4"),
list("vctrs", "0.3.5"),
list("viridis", "0.5.1"),
list("viridisLite", "0.3.0"),
list("waldo", "0.2.3"),
list("whisker", "0.4"),
list("withr", "2.3.0"),
list("xfun", "0.19"),
list("xml2", "1.3.2"),
list("xopen", "1.0.0"),
list("xtable", "1.8-4"),
list("yaml", "2.2.1"),
list("zeallot", "0.1.0")
)) {
devtools::install_version(info[[1]], version=info[[2]], repos="https://cran.rstudio.com/")
}