Skip to content

Commit 0c78b9a

Browse files
committed
fix lintr due to variable name
1 parent 1572638 commit 0c78b9a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

episodes/modelling-interventions.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -464,13 +464,13 @@ infections_intervention <- epidemics::new_infections(
464464
infections_baseline$scenario <- "Baseline"
465465
infections_intervention$scenario <- "Vaccination"
466466
467-
# Combine data from both scenarios
468-
infections_baseline_intervention <- dplyr::bind_rows(
467+
# Combine the data from both scenarios
468+
infections_baseline_interv <- dplyr::bind_rows(
469469
infections_baseline,
470470
infections_intervention
471471
)
472472
473-
infections_baseline_intervention %>%
473+
infections_baseline_interv %>%
474474
ggplot(aes(x = time, y = new_infections, colour = scenario)) +
475475
geom_line() +
476476
geom_vline(

0 commit comments

Comments
 (0)