We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1572638 commit 0c78b9aCopy full SHA for 0c78b9a
1 file changed
episodes/modelling-interventions.Rmd
@@ -464,13 +464,13 @@ infections_intervention <- epidemics::new_infections(
464
infections_baseline$scenario <- "Baseline"
465
infections_intervention$scenario <- "Vaccination"
466
467
-# Combine data from both scenarios
468
-infections_baseline_intervention <- dplyr::bind_rows(
+# Combine the data from both scenarios
+infections_baseline_interv <- dplyr::bind_rows(
469
infections_baseline,
470
infections_intervention
471
)
472
473
-infections_baseline_intervention %>%
+infections_baseline_interv %>%
474
ggplot(aes(x = time, y = new_infections, colour = scenario)) +
475
geom_line() +
476
geom_vline(
0 commit comments