-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaper.R
More file actions
36 lines (26 loc) · 727 Bytes
/
paper.R
File metadata and controls
36 lines (26 loc) · 727 Bytes
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
# Scripts to generate paper tables, figures and the supplement
# tools -----
library(plyr)
library(tidyverse)
library(trafo)
library(stringi)
library(exda)
library(cowplot)
library(figur)
library(rmarkdown)
library(knitr)
library(bookdown)
library(flextable)
library(soucer)
source_all('./tools/tools.R',
message = TRUE, crash = TRUE)
# paper scripts ------
insert_msg('Sourcing the paper scripts')
c('./paper scripts/tables.R',
'./paper scripts/figures.R',
'./paper scripts/supplement.R',
'./paper scripts/links.R',
'./paper scripts/render.R') %>%
source_all(message = TRUE, crash = TRUE)
# END -----
insert_tail()