-
Notifications
You must be signed in to change notification settings - Fork 2
/
21_precip_history_eval.yml
57 lines (43 loc) · 2.62 KB
/
21_precip_history_eval.yml
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
47
48
49
50
51
52
53
54
55
56
57
target_default: 21_precip_history_eval
packages:
- dplyr
- lubridate
- ggplot2
- viridis
include:
- 20_prep_data.yml
sources:
- 21_precip_history_eval/code/precip_summary_figs.R
targets:
21_precip_history_eval:
depends:
- figures/precip/monthly_cumulative_precip_1990.png
- figures/precip/monthly_cumulative_precip_1940.png
- figures/precip/yearly_cumulative_precip_1990.png
- figures/precip/yearly_cumulative_precip_1940.png
- figures/precip/yearly_precip_1990.png
- figures/precip/yearly_precip_1940.png
- figures/precip/monthly_precip_1990.png
- figures/precip/monthly_precip_1940.png
- figures/precip/monthly_1inch.png
- figures/precip/yearly_1inch.png
figures/precip/monthly_cumulative_precip_1990.png:
command: plot_precip_time(fig_name = target_name, precip_dat = monthly_precip, start_year = I(1990), time_period = I('month'), type = I('cumulative'))
figures/precip/monthly_cumulative_precip_1940.png:
command: plot_precip_time(fig_name = target_name, precip_dat = monthly_precip, start_year = I(1940), time_period = I('month'), type = I('cumulative'))
figures/precip/yearly_cumulative_precip_1940.png:
command: plot_precip_time(fig_name = target_name, precip_dat = yearly_precip, start_year = I(1940), time_period = I('year'), type = I('cumulative'))
figures/precip/yearly_cumulative_precip_1990.png:
command: plot_precip_time(fig_name = target_name, precip_dat = yearly_precip, start_year = I(1990), time_period = I('year'), type = I('cumulative'))
figures/precip/yearly_precip_1990.png:
command: plot_precip_time(fig_name = target_name, precip_dat = yearly_precip, start_year = I(1990), time_period = I('year'), type = I('totals'))
figures/precip/yearly_precip_1940.png:
command: plot_precip_time(fig_name = target_name, precip_dat = yearly_precip, start_year = I(1940), time_period = I('year'), type = I('totals'))
figures/precip/monthly_precip_1940.png:
command: plot_precip_time(fig_name = target_name, precip_dat = monthly_precip, start_year = I(1940), time_period = I('month'), type = I('totals'))
figures/precip/monthly_precip_1990.png:
command: plot_precip_time(fig_name = target_name, precip_dat = monthly_precip, start_year = I(1990), time_period = I('month'), type = I('totals'))
figures/precip/monthly_1inch.png:
command: plot_precip_extremes(fig_name = target_name, precip_dat = monthly_precip, time_period = I("month"))
figures/precip/yearly_1inch.png:
command: plot_precip_extremes(fig_name = target_name, precip_dat = yearly_precip, time_period = I("year"))