-
Notifications
You must be signed in to change notification settings - Fork 1
/
4_viz.yml
36 lines (29 loc) · 946 Bytes
/
4_viz.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
target_default: 4_viz
packages:
- tidyverse
- scipiper
- sf
- viridis
sources:
- src/viz_utils.R
targets:
4_viz:
depends:
- out_viz/accuracy_panel.png
- out_viz/data_coverage_panel.png
- out_viz/bias_panel.png
out_viz/accuracy_panel.png:
command: plot_accuracy_panel(target_name, 'out_data/lake_metadata.csv',
preds_obs_fl = 'out_data/lake_surface_temp_obs_preds.csv',
accuracy_cellsize = 0.5,
space_cellsize = 1,
model_ids = I(c(I('wtemp_EALSTM'), I('wtemp_ERA5'), I('wtemp_LM'))))
out_viz/data_coverage_panel.png:
command: plot_coverage_panel(target_name,
centroids_sf = modeled_centroids_sf,
metadata_fl = 'out_data/lake_metadata.csv',
preds_obs_fl = 'out_data/lake_surface_temp_obs_preds.csv',
cellsize = 1)
out_viz/bias_panel.png:
command: plot_bias_panel(target_name,
preds_obs_fl = 'out_data/lake_surface_temp_obs_preds.csv')