Skip to content

Commit 26e7de4

Browse files
authored
fix format and lintr
1 parent 650d4f9 commit 26e7de4

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

episodes/modelling-interventions.Rmd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,10 @@ infections_baseline$scenario <- "Baseline"
465465
infections_intervention$scenario <- "Vaccination"
466466
467467
# Combine the data from both scenarios
468-
infections_baseline_intervention <- dplyr::bind_rows(infections_baseline, infections_intervention)
468+
infections_baseline_intervention <- dplyr::bind_rows(
469+
infections_baseline,
470+
infections_intervention
471+
)
469472
470473
infections_baseline_intervention %>%
471474
ggplot(aes(x = time, y = new_infections, colour = scenario)) +
@@ -475,7 +478,8 @@ infections_baseline_intervention %>%
475478
linetype = "dashed",
476479
linewidth = 0.2
477480
) +
478-
scale_y_continuous(labels = scales::comma)
481+
scale_y_continuous(labels = scales::comma) +
482+
theme_bw()
479483
```
480484

481485
:::::::::::::::::::::

0 commit comments

Comments
 (0)