-
Notifications
You must be signed in to change notification settings - Fork 0
/
_targets.R
36 lines (32 loc) · 1.05 KB
/
_targets.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
library(targets)
tar_option_set(packages = c("retry",
"sbtools",
"secret",
"tidyverse",
"zip",
'ggplot2',
'lubridate',
'scales',
'ggforce',
'showtext',
'paletteer',
'BAMMtools',
'scico',
'scales',
'ggthemes',
'maps',
'mapdata',
'cowplot',
'mapproj',
'svglite'))
# Phase target makefiles
source("0_config.R")
source("1_fetch.R")
source("2_process.R")
source("3_visualize.R")
# Global options
focal_StaID = '03221000'
focal_year = 1963
focal_threshold = 10
# Combined list of target outputs
c(p0_targets, p1_targets, p2_targets, p3_targets)