-
Notifications
You must be signed in to change notification settings - Fork 4
/
install.R
36 lines (32 loc) · 1.09 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
# *------------------------------------------------------------------
# | PROGRAM NAME: 00_prepare_file_system
# | FILE NAME: 00_prepare_file_system.R
# | DATE:
# | CREATED BY: Jim Stagge
# *----------------------------------------------------------------
# | PURPOSE: This code installs all packages needed to run the
# | reproducibility analysis.
# |
# |
# |
# *------------------------------------------------------------------
###########################################################################
### Install packages
###########################################################################
### Packages from CRAN
install.packages("assertthat")
install.packages("tidyverse")
#install.packages("colorblindr")
install.packages("stringr")
install.packages("ggridges")
install.packages("ggthemes")
install.packages("riverplot")
install.packages("tspmeta")
install.packages("svglite")
install.packages("MultinomialCI")
install.packages("ggsci")
### Packages from GitHub
install.packages("devtools")
require(devtools)
#install_github("jalvesaq/colorout")
install_github("jstagge/staggefuncs")