-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.R
executable file
·51 lines (48 loc) · 1.36 KB
/
install.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
# This bookdown in its version 2022 needs the following R packages
# R 4.1.3
# Use the following to list all dependencies:
#imports <- unique(c("bookdown", "learnitdown", "SciViews",
# attachment::att_from_rmds(".")))
#attachment::att_to_desc_from_is(path.d = "DESCRIPTION",
# imports = imports, suggests = NULL)
# From CRAN
install.packages(c("knitr", "bookdown", # The bases!
"gdtools", "svglite", # SVG graphs
"htmltools", "vembedr", # To embed videos easily
"devtools", # To install packages from Github
"broom",
"car",
"DiagrammeR",
"DT",
"faraway",
"fortunes",
"GGally",
"ggplot2",
"ggpubr",
"ggridges",
"glue",
"knitr",
"lmerTest",
"mosaic",
"multcomp",
"nparcomp",
"pander",
"pwr",
"rmarkdown",
"scales",
"sessioninfo",
"skimr"
))
# On a Mac does not install correctly from the binaries
install.packages("broom.mixed", type = "source")
# From Github (latest devel version)
devtools::install_github("SciViews/svMisc")
devtools::install_github("SciViews/svBase")
devtools::install_github("SciViews/svFlow")
devtools::install_github("SciViews/data.io")
devtools::install_github("SciViews/chart")
devtools::install_github("SciViews/exploreit")
devtools::install_github("SciViews/SciViews")
devtools::install_github("rstudio/learnr")
devtools::install_github("rstudio/gradethis")
devtools::install_github("SciViews/learnitdown")