Nothing
library(data.table)
library(ggplot2)
library(ggh4x)
library(patchwork)
.args <- if (interactive()) c(
file.path("figure", "fig_utilities.rda"),
file.path("output", "consolidated.rds"),
file.path("figure", "yll.png")
) else commandArgs(trailingOnly = TRUE)
load(.args[1])
ylls_dt <- readRDS(.args[2])
base_dt <- ylls_dt[
intervention == "none", .SD, .SDcols = -c("intervention")
]
int_dt <- ylls_dt[intervention != "none"][
base_dt, on = setdiff(names(base_dt), "YLL")
]
int_dt[, averted_yll := i.YLL - YLL]
int_dt[, sim_method := factor(sim_method, levels = names(model_assumption_labels), ordered = TRUE)]
int_dt[, method := factor(method, levels = names(model_assumption_labels), ordered = TRUE)]
int_dt[sim_method == "full", method := factor(sim_method, levels = names(model_assumption_labels), ordered = TRUE) ]
int_dt$intervention <- factor(int_dt$intervention, levels=c('vax_young','vax_working','vax_older'))
# choosing to only show results when using the 'paramix' deaths
max_hic <- max(int_dt[(sim_method == "wm_f" | sim_method == 'full') & place == 'GBR',]$averted_yll)/1000
max_lmic <- max(int_dt[(sim_method == "wm_f" | sim_method == 'full') & place == 'AFG',]$averted_yll)/1000
plot_p <- ggplot(int_dt[(sim_method == "wm_f" | sim_method == 'full') & place=='AFG' & pathogen=='FLU']) + aes(
x = intervention, group = method,
y = averted_yll/1000, fill = method, shape = sim_method
) +
facet_nested(pathogen ~ place, scale = "free_y", labeller = labeller(
pathogen = pathogen_labels, place = iso_labels
)) +
geom_bar(position = 'dodge', stat = 'identity') +
# geom_point(position = position_dodge(width = 0.3)) +
theme_bw() + theme(
element_text(size = 16), legend.position = "right",
panel.spacing.x = unit(1.5, "line"),
axis.text.x = element_text(angle = 0),
strip.text.y = element_blank()
) +
scale_x_discrete("Vaccination age group", labels = intervention_labels) +
scale_y_continuous("Years of life saved (thousands)", limits = c(0, max_lmic)) +
scale_color_distill() + scale_shape_discrete("Simulation\nRate Assumption", labels = model_assumption_labels)
plot_q <- ggplot(int_dt[(sim_method == "wm_f" | sim_method == 'full') & place=='GBR' & pathogen=='FLU']) + aes(
x = intervention, group = method,
y = averted_yll/1000, fill = method, shape = sim_method
) +
facet_nested(pathogen ~ place, scale = "free_y", labeller = labeller(
pathogen = pathogen_labels, place = iso_labels
)) +
geom_bar(position = 'dodge', stat = 'identity') +
# geom_point(position = position_dodge(width = 0.3)) +
theme_bw() + theme(
element_text(size = 16), legend.position = "right",
panel.spacing.x = unit(1.5, "line"),
axis.text.x = element_text(angle = 0)
) +
scale_x_discrete("Vaccination age group", labels = intervention_labels) +
scale_y_continuous("Years of life saved (thousands)", limits = c(0, max_hic)) +
scale_color_distill() + scale_shape_discrete("Simulation\nRate Assumption", labels = model_assumption_labels)
plot_r <- ggplot(int_dt[(sim_method == "wm_f" | sim_method == 'full') & place=='AFG' & pathogen=='SC2']) + aes(
x = intervention, group = method,
y = averted_yll/1000, fill = method, shape = sim_method
) +
facet_nested(pathogen ~ place, scale = "free_y", labeller = labeller(
pathogen = pathogen_labels, place = iso_labels
)) +
geom_bar(position = 'dodge', stat = 'identity') +
# geom_point(position = position_dodge(width = 0.3)) +
theme_bw() + theme(
element_text(size = 16), legend.position = "right",
panel.spacing.x = unit(1.5, "line"),
axis.text.x = element_text(angle = 0),
strip.text.x = element_blank(),
strip.text.y = element_blank()
) +
scale_x_discrete("Vaccination age group", labels = intervention_labels) +
scale_y_continuous("Years of life saved (thousands)", limits = c(0, max_lmic)) +
scale_color_distill() + scale_shape_discrete("Simulation\nRate Assumption", labels = model_assumption_labels)
plot_s <- ggplot(int_dt[(sim_method == "wm_f" | sim_method == 'full') & place=='GBR' & pathogen=='SC2']) + aes(
x = intervention, group = method,
y = averted_yll/1000, fill = method, shape = sim_method
) +
facet_nested(pathogen ~ place, scale = "free_y", labeller = labeller(
pathogen = pathogen_labels, place = iso_labels
)) +
geom_bar(position = 'dodge', stat = 'identity') +
# geom_point(position = position_dodge(width = 0.3)) +
theme_bw() + theme(
element_text(size = 16), legend.position = "right",
panel.spacing.x = unit(1.5, "line"),
axis.text.x = element_text(angle = 0),
strip.text.x = element_blank()
) +
scale_x_discrete("Vaccination age group", labels = intervention_labels) +
scale_y_continuous("Years of life saved (thousands)", limits = c(0, max_hic)) +
scale_color_distill() + scale_shape_discrete("Simulation\nRate Assumption", labels = model_assumption_labels)
plots <- plot_p + plot_q + plot_r + plot_s + plot_layout(nrow = 2, axes = 'collect', guides = 'collect')
ggsave(tail(.args, 1), plots, width = 25, height = 14, units = "cm", bg = "white")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.