@@ -30,22 +30,29 @@ prediction_cards_filepath <- case_when(
30
30
31
31
options(warn = 1 )
32
32
33
- # Requested forecasters that do not get included in final scores:
34
- # Auquan-SEIR: Only predicts cumulative deaths
35
- # CDDEP-ABM: No longer on Forecast Hub. Causes some warnings when trying to download.
36
- # CDDEP-SEIR_MCMC: County-level predictions only
37
- # CUBoulder-COVIDLSTM: County-level predictions only
38
- # FAIR-NRAR: County-level predictions only
39
- # HKUST-DNN: Only predicts cumulative deaths
40
- # ISUandPKU-vSEIdR: Folder but no forecasts on Forecast Hub
41
- # PandemicCentral-COVIDForest: County-level predictions only
42
- # UT_GISAG-SPDM: County-level predictions only
43
- # WalmartLabsML-LogForecasting: Only predicts cumulative deaths
44
- # Yu_Group-CLEP: County-level predictions only
45
33
forecasters <- unique(c(
46
34
get_covidhub_forecaster_names(designations = c(" primary" , " secondary" )),
47
35
" COVIDhub-baseline" , " COVIDhub-trained_ensemble" , " COVIDhub-4_week_ensemble"
48
- ))
36
+ )) %> %
37
+ # Drop invalid forecasters
38
+ setdiff(c(
39
+ # Forecasters that have no data on Forecast Hub
40
+ " CDDEP-ABM" , # No longer on Forecast Hub. Causes some warnings when trying to download.
41
+ " ISUandPKU-vSEIdR" , # Folder but no forecasts on Forecast Hub
42
+
43
+ # Forecasters that don't qualify for inclusion in the dashboard (wrong geo
44
+ # level, wrong target variable)
45
+ " Auquan-SEIR" , # Only predicts cumulative deaths
46
+ " CDDEP-SEIR_MCMC" , # County-level predictions only
47
+ " CUBoulder-COVIDLSTM" , # County-level predictions only
48
+ " FAIR-NRAR" , # County-level predictions only
49
+ " HKUST-DNN" , # Only predicts cumulative deaths
50
+ " PandemicCentral-COVIDForest" , # County-level predictions only
51
+ " UT_GISAG-SPDM" , # County-level predictions only
52
+ " WalmartLabsML-LogForecasting" , # Only predicts cumulative deaths
53
+ " Yu_Group-CLEP" # County-level predictions only
54
+ ))
55
+
49
56
locations <- covidHubUtils :: hub_locations
50
57
51
58
# also includes "us", which is national level data
0 commit comments