diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index c1f7a96..094b531 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -26,7 +26,9 @@ jobs: - uses: r-lib/actions/setup-r@v2 with: use-public-rspm: true - extra-repositories: 'https://stan-dev.r-universe.dev' + extra-repositories: + https://stan-dev.r-universe.dev, + https://epiforecasts.r-universe.dev - name: Install dependencies uses: r-lib/actions/setup-r-dependencies@v2 diff --git a/.github/workflows/render-readme.yaml b/.github/workflows/render-readme.yaml index e00d225..b06abde 100644 --- a/.github/workflows/render-readme.yaml +++ b/.github/workflows/render-readme.yaml @@ -23,7 +23,9 @@ jobs: uses: r-lib/actions/setup-r@v2 with: use-public-rspm: true - extra-repositories: 'https://stan-dev.r-universe.dev' + extra-repositories: + https://stan-dev.r-universe.dev, + https://epiforecasts.r-universe.dev - name: Setup pandoc uses: r-lib/actions/setup-pandoc@v2 diff --git a/sessions/forecast-ensembles.qmd b/sessions/forecast-ensembles.qmd index 9fac523..ca9fc07 100644 --- a/sessions/forecast-ensembles.qmd +++ b/sessions/forecast-ensembles.qmd @@ -46,7 +46,7 @@ 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. +We will also use `qrensemble` for quantile regression averaging in the weighted ensemble section. ```{r libraries, message = FALSE} library("nfidd") @@ -54,7 +54,7 @@ library("dplyr") library("tidyr") library("ggplot2") library("scoringutils") -library("qra") +library("qrensemble") ``` ::: {.callout-tip}