Skip to content

Commit af5a97f

Browse files
committed
drop forecasters that don't exist
1 parent 92e8513 commit af5a97f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Report/create_reports.R

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,24 @@ options(warn = 1)
3232

3333
# Requested forecasters that do not get included in final scores:
3434
# Auquan-SEIR: Only predicts cumulative deaths
35-
# CDDEP-ABM: No longer on Forecast Hub. Causes some warnings when trying to download.
3635
# CDDEP-SEIR_MCMC: County-level predictions only
3736
# CUBoulder-COVIDLSTM: County-level predictions only
3837
# FAIR-NRAR: County-level predictions only
3938
# HKUST-DNN: Only predicts cumulative deaths
40-
# ISUandPKU-vSEIdR: Folder but no forecasts on Forecast Hub
4139
# PandemicCentral-COVIDForest: County-level predictions only
4240
# UT_GISAG-SPDM: County-level predictions only
4341
# WalmartLabsML-LogForecasting: Only predicts cumulative deaths
4442
# Yu_Group-CLEP: County-level predictions only
4543
forecasters <- unique(c(
4644
get_covidhub_forecaster_names(designations = c("primary", "secondary")),
4745
"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+
4953
locations <- covidHubUtils::hub_locations
5054

5155
# also includes "us", which is national level data

0 commit comments

Comments
 (0)