Skip to content

Commit cd478be

Browse files
committed
keep inline code-link at the end of sentence to facilitate translations
1 parent b1a76fc commit cd478be

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

episodes/compare-interventions.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ We must also define our *outcome of interest* to make comparisons between interv
121121
- Health impact measures (e.g., Quality-Adjusted Life Years [QALYs] or Disability-Adjusted Life Years [DALYs])
122122
- Economic measures (e.g., healthcare costs, productivity losses)
123123

124-
In this tutorial, we will learn how to use the `{epidemics}` package to compare the effect of different interventions on simulated disease trajectories. We will use:
124+
In this tutorial, we will learn how to use the R package `{epidemics}` to compare the effect of different interventions on simulated disease trajectories. We will use:
125125
- `{socialmixr}` for social contact data
126126
- `{tidyverse}` (including `{dplyr}` and `{ggplot2}`) for data manipulation and visualization
127127

@@ -485,7 +485,7 @@ output_vacamole %>%
485485

486486
While visualizations are useful for comparing intervention scenarios over time, we also need quantitative measures of intervention impact. One such measure is the number of infections averted, which helps us understand the difference between intervention scenarios.
487487

488-
The `{epidemics}` package provides the `outcomes_averted()` function to calculate infections averted while accounting for parameter uncertainty. Let's extend our COVID-19 example from [Modelling interventions](../episodes/modelling-interventions.md) to account for uncertainty in the basic reproduction number ($R_0$).
488+
The R package `{epidemics}` provides the `outcomes_averted()` function to calculate infections averted while accounting for parameter uncertainty. Let's extend our COVID-19 example from [Modelling interventions](../episodes/modelling-interventions.md) to account for uncertainty in the basic reproduction number ($R_0$).
489489

490490
We use these parameter values alongside the population structure and contact matrix used in [Modelling interventions](../episodes/modelling-interventions.md) to run the model for the baseline scenario:
491491

episodes/disease-burden.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The choice between these approaches depends on whether burden affects transmissi
4242
- For Ebola, hospitalizations are important for transmission due to high-risk healthcare settings
4343
- For many respiratory infections, severe illness typically occurs after the infectious period, so burden can be modeled separately
4444

45-
In this tutorial, we'll focus on the separated approach, where we first run an epidemic model to simulate infections, then use these values to estimate disease burden as a follow-on analysis. We'll use the `{epidemics}` package to simulate disease trajectories, `{socialmixr}` for social contact data, and `{tidyverse}` for data manipulation and plotting.
45+
In this tutorial, we'll focus on the separated approach, where we first run an epidemic model to simulate infections, then use these values to estimate disease burden as a follow-on analysis. We'll use `{epidemics}` to simulate disease trajectories, `{socialmixr}` for social contact data, and `{tidyverse}` for data manipulation and plotting.
4646

4747
```{r, warning = FALSE, message = FALSE}
4848
library(epiparameter)
@@ -74,7 +74,7 @@ To convert infections to hospitalizations, we need to consider:
7474
- The time delay from infection to hospital admission
7575
- The time spent in hospital before discharge
7676

77-
We'll use the `{epiparameter}` package to define these delay distributions. The Gamma distribution is commonly used for these delays because:
77+
We'll use `{epiparameter}` to define these delay distributions. The Gamma distribution is commonly used for these delays because:
7878

7979
- It's flexible and can model various shapes
8080
- It's bounded at zero (negative delays don't make sense)

episodes/modelling-interventions.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Mathematical models can be used to generate trajectories of disease spread under
3838

3939
Interventions are usually incorporated into mathematical models via manipulating values of relevant parameters, e.g., reduce transmission, or via introducing a new disease state, e.g., vaccinated class where we assume that individuals who belong to this class are no longer susceptible to infection.
4040

41-
In this tutorial, we will learn how to use the `{epidemics}` package to model interventions and access to social contact data with `{socialmixr}`. We'll use `{dplyr}`, `{ggplot2}` and the pipe `%>%` to connect some of their functions, so let's also call to the `{tidyverse}` package:
41+
In this tutorial, we will learn how to use `{epidemics}` to model interventions and access to social contact data with `{socialmixr}`. We'll use `{dplyr}`, `{ggplot2}` and the pipe `%>%` to connect some of their functions, so let's also call `{tidyverse}`:
4242

4343
```{r,message=FALSE,warning=FALSE}
4444
library(epidemics)

0 commit comments

Comments
 (0)