-
Notifications
You must be signed in to change notification settings - Fork 2
/
19_prep_data_source_tests.yml
58 lines (43 loc) · 1.48 KB
/
19_prep_data_source_tests.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
58
target_default: 19_prep_data_source_tests
packages:
- EGRET
- dplyr
- lubridate
include:
- 12_get_data_subset_tests.yml
sources:
- 20_prep_data/code/data_prep_fxns.R
- 10_get_data/code/precip_fxns.R
targets:
19_prep_data_source_tests:
depends:
- tp_all_eList
- tp_first_eList
- tp_last_eList
- tp_r1_eList
- tp_r2_eList
- tp_r3_eList
- tp_dv_eList
- tp_dv_fn_eList
# using all obs tp concentrations
tp_all_eList:
command: mergeReport(INFO = tp_info, Daily = discharge, Sample = tp)
# using various subsets/summaries of observed concentrations
tp_first_eList:
command: mergeReport(INFO = tp_info, Daily = discharge, Sample = tp_first)
tp_last_eList:
command: mergeReport(INFO = tp_info, Daily = discharge, Sample = tp_last)
tp_mean_eList:
command: mergeReport(INFO = tp_info, Daily = discharge, Sample = tp_mean)
tp_r1_eList:
command: mergeReport(INFO = tp_info, Daily = discharge, Sample = tp_last)
tp_r2_eList:
command: mergeReport(INFO = tp_info, Daily = discharge, Sample = tp_last)
tp_r3_eList:
command: mergeReport(INFO = tp_info, Daily = discharge, Sample = tp_last)
# using daily values output by gclas
tp_dv_eList:
command: mergeReport(INFO = tp_info, Daily = discharge, Sample = tp_daily)
# using fn daily values output by gclas
tp_dv_fn_eList:
command: mergeReport(INFO = tp_info, Daily = discharge, Sample = tp_daily_fn)