File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -32,20 +32,24 @@ options(warn = 1)
32
32
33
33
# Requested forecasters that do not get included in final scores:
34
34
# Auquan-SEIR: Only predicts cumulative deaths
35
- # CDDEP-ABM: No longer on Forecast Hub. Causes some warnings when trying to download.
36
35
# CDDEP-SEIR_MCMC: County-level predictions only
37
36
# CUBoulder-COVIDLSTM: County-level predictions only
38
37
# FAIR-NRAR: County-level predictions only
39
38
# HKUST-DNN: Only predicts cumulative deaths
40
- # ISUandPKU-vSEIdR: Folder but no forecasts on Forecast Hub
41
39
# PandemicCentral-COVIDForest: County-level predictions only
42
40
# UT_GISAG-SPDM: County-level predictions only
43
41
# WalmartLabsML-LogForecasting: Only predicts cumulative deaths
44
42
# Yu_Group-CLEP: County-level predictions only
45
43
forecasters <- unique(c(
46
44
get_covidhub_forecaster_names(designations = c(" primary" , " secondary" )),
47
45
" COVIDhub-baseline" , " COVIDhub-trained_ensemble" , " COVIDhub-4_week_ensemble"
48
- ))
46
+ )) %> %
47
+ # Drop a couple invalid forecasters
48
+ setdiff(c(
49
+ " CDDEP-ABM" , # No longer on Forecast Hub. Causes some warnings when trying to download.
50
+ " ISUandPKU-vSEIdR" # Folder but no forecasts on Forecast Hub
51
+ ))
52
+
49
53
locations <- covidHubUtils :: hub_locations
50
54
51
55
# also includes "us", which is national level data
You can’t perform that action at this time.
0 commit comments