diff --git a/sessions/forecast-evaluation-of-multiple-models.qmd b/sessions/forecast-evaluation-of-multiple-models.qmd index d4b0361..c96109e 100644 --- a/sessions/forecast-evaluation-of-multiple-models.qmd +++ b/sessions/forecast-evaluation-of-multiple-models.qmd @@ -29,7 +29,6 @@ The source file of this session is located at `sessions/forecast-ensembles.qmd`. ## Libraries used In this session we will use the `nfidd` package to load a data set of infection times and access stan models and helper functions, the `dplyr` and `tidyr` packages for data wrangling, `ggplot2` library for plotting, the `tidybayes` package for extracting results of the inference and the `scoringutils` package for evaluating forecasts. -We will also use `qra` for quantile regression averaging in the weighted ensemble section. ```{r libraries, message = FALSE} library("nfidd") @@ -37,7 +36,6 @@ library("dplyr") library("tidyr") library("ggplot2") library("scoringutils") -library("qra") ``` ::: {.callout-tip}