We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 650d4f9 commit 26e7de4Copy full SHA for 26e7de4
1 file changed
episodes/modelling-interventions.Rmd
@@ -465,7 +465,10 @@ infections_baseline$scenario <- "Baseline"
465
infections_intervention$scenario <- "Vaccination"
466
467
# Combine the data from both scenarios
468
-infections_baseline_intervention <- dplyr::bind_rows(infections_baseline, infections_intervention)
+infections_baseline_intervention <- dplyr::bind_rows(
469
+ infections_baseline,
470
+ infections_intervention
471
+)
472
473
infections_baseline_intervention %>%
474
ggplot(aes(x = time, y = new_infections, colour = scenario)) +
@@ -475,7 +478,8 @@ infections_baseline_intervention %>%
475
478
linetype = "dashed",
476
479
linewidth = 0.2
477
480
) +
- scale_y_continuous(labels = scales::comma)
481
+ scale_y_continuous(labels = scales::comma) +
482
+ theme_bw()
483
```
484
485
:::::::::::::::::::::
0 commit comments