Skip to content

Commit 0637aff

Browse files
committed
don't include the geo_agged by default anymore
1 parent 10b6161 commit 0637aff

4 files changed

Lines changed: 28 additions & 4 deletions

File tree

covid_geo_exclusions.csv

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,21 @@ forecast_date,forecaster,geo_value,weight
99
2024-10-01, linear, all, 3
1010
2024-10-01, linearlog, all, 0
1111
2024-10-01, climate_base, all, 2
12-
2024-10-01, climate_geo_agged, all, 0.5
12+
2024-10-01, climate_geo_agged, all, 0
1313
2024-10-01, climate_quantile_extrapolated, all, 0
1414
##################
15+
# April 30th
16+
##################
17+
2025-04-30, all, mp, 0
18+
2025-04-30, windowed_seasonal, all, 0.0001
19+
2025-04-30, windowed_seasonal_extra_sources, all, 3
20+
2025-04-30, climate_linear, all, 0.0001
21+
2025-04-30, linear, all, 3
22+
2025-04-30, linearlog, all, 0
23+
2025-04-30, climate_base, all, 2
24+
2025-04-30, climate_geo_agged, all, 0,
25+
2025-04-30, climate_quantile_extrapolated, all, 0
26+
##################
1527
# April 23rd
1628
##################
1729
2025-04-23, all, mp, 0

flu_geo_exclusions.csv

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,21 @@ forecast_date,forecaster,geo_value,weight
99
2024-10-01, linear, all, 2
1010
2024-10-01, linearlog, all, 0
1111
2024-10-01, climate_base, all, 0.5
12-
2024-10-01, climate_geo_agged, all, 0.25
12+
2024-10-01, climate_geo_agged, all, 0
1313
2024-10-01, climate_quantile_extrapolated, all, 0
1414
##################
15+
# April 30th
16+
##################
17+
2025-04-30, all, mp, 0
18+
2025-04-30, windowed_seasonal, all, 3
19+
2025-04-30, windowed_seasonal_extra_sources, all, 3
20+
2025-04-30, climate_linear, all, 3
21+
2025-04-30, linear, all, 2
22+
2025-04-30, linearlog, all, 0
23+
2025-04-30, climate_base, all, 0.5
24+
2025-04-30, climate_geo_agged, all, 0
25+
2025-04-30, climate_quantile_extrapolated, all, 0
26+
##################
1527
# April 23rd
1628
##################
1729
2025-04-23, all, mp, 0

scripts/covid_hosp_prod.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ ensemble_targets <- tar_map(
404404
),
405405
params = list(
406406
disease = "covid",
407-
forecast_res = forecasts_and_ensembles,
407+
forecast_res = forecasts_and_ensembles %>% ungroup() %>% filter(forecaster != "climate_geo_agged"),
408408
forecast_date = as.Date(forecast_date_int),
409409
truth_data = truth_data
410410
)

scripts/flu_hosp_prod.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ ensemble_targets <- tar_map(
445445
),
446446
params = list(
447447
disease = "flu",
448-
forecast_res = forecasts_and_ensembles,
448+
forecast_res = forecasts_and_ensembles%>% ungroup() %>% filter(forecaster != "climate_geo_agged"),
449449
forecast_date = as.Date(forecast_date_int),
450450
truth_data = truth_data
451451
)

0 commit comments

Comments
 (0)