-
Notifications
You must be signed in to change notification settings - Fork 0
/
paper.R
46 lines (34 loc) · 939 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
46
# Figures, supplementary material and manuscript
# tools -------
library(plyr)
library(tidyverse)
library(soucer)
library(stringi)
library(furrr)
library(exda)
library(clustTools)
library(cowplot)
library(writexl)
library(figur)
library(rmarkdown)
library(knitr)
library(bookdown)
library(flextable)
explore <- exda::explore
extract <- clustTools::extract
nobs <- clustTools::nobs
reduce <- purrr::reduce
select <- dplyr::select
insert_head()
c('./tools/project_globals.R',
'./tools/project_tools.R') %>%
source_all(message = TRUE, crash = TRUE)
# paper scripts -------
insert_msg('Paper scripts')
c('./paper scripts/tables.R',
'./paper scripts/supplement.R',
'./paper scripts/figures.R',
'./paper scripts/render.R') %>%
source_all(message = TRUE, crash = TRUE)
# END -------
insert_tail()