From 1adc3d2c563e78e76820a6c109d910946c4815e1 Mon Sep 17 00:00:00 2001 From: Sebastian Funk Date: Mon, 4 Nov 2024 15:19:15 +0700 Subject: [PATCH 1/2] update package name to qrensemble --- sessions/forecast-ensembles.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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} From 8c2ac81d7b02265f99692b5d8359a55ac34984df Mon Sep 17 00:00:00 2001 From: Sebastian Funk Date: Mon, 4 Nov 2024 15:32:27 +0700 Subject: [PATCH 2/2] update actions --- .github/workflows/deploy.yaml | 4 +++- .github/workflows/render-readme.yaml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) 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