-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper.R
45 lines (33 loc) · 973 Bytes
/
paper.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
# Report-generating scripts
# tools -----
library(plyr)
library(tidyverse)
library(exda)
library(cowplot)
library(figur)
library(writexl)
library(knitr)
library(rmarkdown)
library(bookdown)
library(flextable)
library(soucer)
library(rmdformats)
library(trafo)
library(patchwork)
insert_head()
source_all('./tools/tools.R',
message = TRUE, crash = TRUE)
# Figures and tables for the revision -----
insert_msg('Figures and tables for the revision')
c('./paper scripts/reviewer_figures.R') %>%
source_all(message = TRUE, crash = TRUE)
# Paper scripts -----
insert_msg('Launching the paper scripts')
c('./paper scripts/links.R',
'./paper scripts/tables.R',
'./paper scripts/figures.R',
'./paper scripts/supplementary.R',
'./paper scripts/render.R') %>%
source_all(message = TRUE, crash = TRUE)
# END -----
insert_tail()