From 10ec7d74712b74392cc364dc10022b56dcdf8e80 Mon Sep 17 00:00:00 2001 From: Ethan White Date: Mon, 19 Aug 2024 14:56:01 -0400 Subject: [PATCH] Evaluate all forecasts made when on dry runs A typo leaving off an `s` meant that we weren't running the correct function. This matches up with the main forecast run. --- PortalForecasts_dryrun.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PortalForecasts_dryrun.R b/PortalForecasts_dryrun.R index 16e97e71..90443c3d 100644 --- a/PortalForecasts_dryrun.R +++ b/PortalForecasts_dryrun.R @@ -9,7 +9,7 @@ setup_production() portalcast(models = c("ESSS", "pevGARCH")) #Evaluate model forecast -evaluate_forecast() +evaluate_forecasts() #Zip all forecasts files and evaluation -post_process() \ No newline at end of file +post_process()