forked from ashattock/epi50
-
Notifications
You must be signed in to change notification settings - Fork 4
/
regression.R
648 lines (541 loc) · 20.1 KB
/
regression.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
###########################################################
# REGRESSION
#
# Fit a user-defined series of models to cumulative impact
# per FVP. This process has two use cases:
# 1) Impute impact for countries not modelled by VIMC
# 2) To infer drivers of impact (on complete set of estimates)
#
###########################################################
# ---------------------------------------------------------
# Parent function for regression modelling
# ---------------------------------------------------------
run_regression = function(case, metric) {
# Only continue if specified by run_module
if (case == "impute" & !is.element(4, o$run_module)) return()
if (case == "infer" & !is.element(7, o$run_module)) return()
message("* Running regression: ", case, " ", metric)
# ---- Load data ----
# Load response variable (impact per FVP)
target = get_regression_data(case, metric)
# Return out if no training data identified
if (nrow(target) == 0)
return()
# ---- Perform regression ----
# Which sources of public health impact are to be modelled
if (case == "impute") use_sources = qc(vimc)
if (case == "infer") use_sources = qc(vimc, static, extern)
# Call country imputation function
predict_dt = table("d_v_a") %>%
filter(source %in% use_sources,
activity != "campaign") %>%
pull(d_v_a_id) %>%
# Apply geographical imputation model...
lapply(perform_regression,
target = target,
case = case,
metric = metric) %>%
rbindlist() %>%
select(d_v_a_id, country, year, impact_impute)
# Save predictions to file for diagnostic plotting
save_rds(predict_dt, case, case, metric, "predictions")
# ---- Use regression to impute missing countries ----
# Apply imputations where needed
#
# NOTE: A trivial process in the infer case
impute_dt = target %>%
select(d_v_a_id, country, year, fvps_cum, impact_cum) %>%
# Append predictions...
left_join(y = predict_dt,
by = c("d_v_a_id", "country", "year")) %>%
# Apply predictions where imputation is needed...
mutate(impact = ifelse(
test = is.na(impact_cum),
yes = impact_impute,
no = impact_cum)) %>%
select(d_v_a_id, country, year,
fvps = fvps_cum, impact) %>%
# Assume any missing values are zero impact...
replace_na(list(impact = 0))
# Save imputed results to file
save_rds(impute_dt, case, case, metric, "result")
# ---- Plot results ----
# Plot predicted vs observed for all countries
plot_impute_quality(metric)
# Plot predicted vs observed for each country
plot_impute_perform(metric)
}
# ---------------------------------------------------------
# Define set of regression models to evaluate
# ---------------------------------------------------------
define_models = function(case) {
# List of available covariates
covars = list(
cov0 = "log(coverage)",
cov1 = "log(coverage_minus_1)",
cov2 = "log(coverage_minus_2)",
cov3 = "log(coverage_minus_3)",
cov4 = "log(coverage_minus_4)",
gini = "gini",
dens = "pop_density",
urban = "urban_percent",
mat = "maternal_mortality",
stunt = "stunting",
phs = "private_health",
water = "basic_water")
# Define models (using shorthand covariate references)
models = list(
# Models for imputing missing countries
impute = list(
m001 = "cov0",
m002 = "cov0 + cov1",
m003 = "cov0 + cov1 + cov2",
m004 = "cov0 + cov1 + cov2 + cov3",
m005 = "cov0 + cov1 + cov2 + cov3 + cov4",
m101 = "cov0 + cov1 + cov2 + cov3 + mat",
m102 = "cov0 + cov1 + cov2 + cov3 + mat + gini",
m103 = "cov0 + cov1 + cov2 + cov3 + mat + gini + stunt",
m104 = "cov0 + cov1 + cov2 + cov3 + mat + gini + stunt + phs",
m105 = "cov0 + cov1 + cov2 + cov3 + mat + gini + stunt + water",
m201 = "cov0 + cov1 + cov2 + cov3 + mat + gini + stunt + water + phs"),
# Models for inferring key drivers of impact
infer = list(
x101 = "cov0 + cov1 + cov2 + cov3 + mat",
x102 = "cov0 + cov1 + cov2 + cov3 + mat + gini",
x103 = "cov0 + cov1 + cov2 + cov3 + mat + gini + stunt",
x104 = "cov0 + cov1 + cov2 + cov3 + mat + gini + stunt + phs",
x105 = "cov0 + cov1 + cov2 + cov3 + mat + gini + stunt + water",
x201 = "cov0 + cov1 + cov2 + cov3 + mat + gini + stunt + water + phs"))
return(list(models[[case]], covars))
}
# ---------------------------------------------------------
# Load/calculate target variable (impact per FVP)
# ---------------------------------------------------------
get_regression_data = function(case, metric) {
# Population size of each country over time
pop_dt = table("wpp_pop") %>%
lazy_dt() %>%
group_by(country, year) %>%
summarise(pop = sum(pop)) %>%
ungroup() %>%
as.data.table()
# Impact estimates in imputation case: VIMC pathogens, VIMC countries
if (case == "impute") {
outcomes_dt = table("vimc_estimates") %>%
rename(impact = !!paste1(metric, "averted"))
}
# Impact estimates in imputation case: all modelled results
if (case == "infer")
outcomes_dt = read_rds("history", metric, "averted")
# Convert estimates to cumulative form
impact_dt = outcomes_dt %>%
lazy_dt() %>%
# Sum impact over age...
group_by(d_v_a_id, country, year) %>%
summarise(impact_abs = sum(impact)) %>%
ungroup() %>%
mutate(impact_abs = pmax(impact_abs, 0)) %>%
# Scale results to per capita...
left_join(y = pop_dt,
by = c("country", "year")) %>%
mutate(impact_rel = impact_abs / pop) %>%
select(-pop) %>%
# Cumulative sum impact...
arrange(d_v_a_id, country, year) %>%
group_by(d_v_a_id, country) %>%
mutate(impact_cum = cumsum(impact_rel)) %>%
ungroup() %>%
as.data.table()
# Extract FVPs
fvps_dt = table("coverage") %>%
lazy_dt() %>%
# Subset pathogens...
filter(d_v_a_id %in% unique(impact_dt$d_v_a_id)) %>%
# Summarise over age...
group_by(d_v_a_id, country, year) %>%
summarise(fvps_abs = sum(fvps)) %>%
ungroup() %>%
# Scale results to per capita...
left_join(y = pop_dt,
by = c("country", "year")) %>%
mutate(fvps_rel = fvps_abs / pop) %>%
select(-pop) %>%
# Cumulative sum FVPs...
arrange(d_v_a_id, country, year) %>%
group_by(d_v_a_id, country) %>%
mutate(fvps_cum = cumsum(fvps_rel)) %>%
ungroup() %>%
as.data.table()
# Combine into single datatable
target_dt = fvps_dt %>%
left_join(y = impact_dt,
by = c("d_v_a_id", "country", "year")) %>%
# Impact per FVP...
mutate(target = impact_cum / fvps_cum)
# Save this datatable to file for plotting purposes
save_rds(target_dt, case, case, metric, "target")
# Throw a warning if no target data identified
if (nrow(target_dt) == 0)
warning("No training data identified")
return(target_dt)
}
# ---------------------------------------------------------
# Perform regression - parent function for key functionality
# ---------------------------------------------------------
perform_regression = function(d_v_a_id, target, case, metric) {
# Vector of all countries to impute for this d-v-a
impute_countries = target %>%
filter(d_v_a_id == !!d_v_a_id,
is.na(target)) %>%
pull(country) %>%
unique()
# Return out if no countries to impute
if (length(impute_countries) == 0)
return()
# ---- Set up ----
# Extract name of this d-v-a
d_v_a_name = table("d_v_a") %>%
filter(d_v_a_id == !!d_v_a_id) %>%
pull(d_v_a_name)
# Display progress message to user
message(" > ", d_v_a_name)
# Load set of models to evaluate
list[models, covars] = define_models(case)
# Append all required covariates - see separate function
target_ts = append_covariates(d_v_a_id, models, covars, target)
# ---- Evaluate all user-defined models ----
message(" - Evaluating models")
# Subset training data (which we have impact estimates for)
data_ts = target_ts %>%
# Remove zeros to allow for log transformation...
filter(target > 0) %>%
# Remove country if insufficient data points for fitting...
group_by(country) %>%
filter(n() >= o$min_data_requirement) %>%
ungroup()
# Evaluate all models in parallel
if (o$parallel$impute)
model_list = mclapply(
X = names(models),
FUN = evaluate_model,
models = models,
covars = covars,
data = data_ts,
mc.cores = o$n_cores,
mc.preschedule = FALSE)
# Evaluate all models consecutively
if (!o$parallel$impute)
model_list = lapply(
X = names(models),
FUN = evaluate_model,
models = models,
covars = covars,
data = data_ts)
# ---- Model selection ----
message(" - Model selection")
# Group countries by region and income status
grouping = table("income_status") %>%
# Income level 5 years ago...
filter(year == max(year) - 5) %>%
# Append region...
left_join(y = table("country"),
by = "country") %>%
select(country, income, region)
# For each country, select the model with the best AICc
model_choice = model_list %>%
lapply(report) %>%
rbindlist() %>%
# Remove null models...
filter(!is.infinite(AICc)) %>%
# Retain only best fit model (if equal, keep the first)...
group_by(country) %>%
slice_min(AICc, with_ties = FALSE) %>%
unique() %>%
# Reappend best model...
left_join(y = rbindlist(model_list),
by = c("country", "model_id")) %>%
# Reduce down to keep only model and AICc...
select(country, model_id, tslm, AICc) %>%
# mutate(model_id = as.factor(model_id)) %>%
mutate(d_v_a_id = d_v_a_id,
.before = 1) %>%
# Append grouping...
left_join(y = grouping,
by = "country") %>%
# Convert to mable class...
as_mable(key = "country",
model = "tslm") %>%
suppressWarnings()
# Extract parameters of best fitting model for each country
model_fit = tidy(model_choice) %>%
select(d_v_a_id, country, model_id, term,
estimate, std.error, p.value) %>%
as.data.table()
# ---- Predictions ----
message(" - Model predictions")
# Impute case: predict missing data using regional best models
if (case == "impute") {
# Evaluate this model - see separate function
predict_dt = evaluate_predictions(
model_choice = model_choice,
model_list = model_list,
target = target_ts,
grouping = grouping)
}
# Infer case: just a case of evaluating on the training data
if (case == "infer") {
# Evaluate models on the training data
predict_dt = augment(model_choice) %>%
select(country, year, prediction = .fitted) %>%
as.data.table()
}
# ---- Format output ----
# Apply predictions to impute missing impact estimates
result_dt = target %>%
filter(d_v_a_id == !!d_v_a_id) %>%
# Append predictions...
left_join(y = predict_dt,
by = c("country", "year")) %>%
select(d_v_a_id, country, year, fvps_cum,
impact_cum, target, prediction) %>%
# Multiply through to obtain cumulative impact over time...
mutate(impact_impute = fvps_cum * prediction,
.after = impact_cum)
# Also format predictors for use in plotting
data_dt = data_ts %>%
mutate(d_v_a_id = d_v_a_id,
.before = 1) %>%
as.data.table()
# Store the data used, fitted model, and result
fit = list(
model = model_choice, # NOTE: Only for non-imputed
report = model_fit,
result = result_dt,
data = data_dt)
# Save to file
save_rds(fit, case, case, metric, d_v_a_id)
return(result_dt)
}
# ---------------------------------------------------------
# Append all required covariates
# ---------------------------------------------------------
append_covariates = function(d_v_a_id, models, covars, target) {
# ---- Identify covariates from model specification ----
# Shorthand covariates used in specified models
covars_used = unlist(models) %>%
paste(collapse = " + ") %>%
str_split_1(pattern = " \\+ ") %>%
unique()
# Associated names of covariate columns
covars_retain = covars[covars_used] %>%
unlist(covars) %>%
str_remove("^.*\\(+") %>%
str_remove("\\)+$")
# ---- Define covariates to be lagged ----
# Details of covariates we wish to lag
lag_dt = covars_retain %>%
str_split("_minus_", simplify = TRUE) %>%
as_named_dt(c("covar", "idx")) %>%
filter(idx > 0)
# Extract all to-be-lagged covariates
covars_lag = unique(lag_dt$covar)
n_lag_years = max(as.numeric(lag_dt$idx))
# Small function to apply lag to given covariate
covar_lag_fn = function(dt) {
# Iterate through covariates and years to lag
for (i in covars_lag) {
for (j in seq_len(n_lag_years)) {
# Incrementally offset by one year
dt[[paste1(i, "minus", j)]] = lag(dt[[i]], j)
}
}
return(dt)
}
# ---- Format coverage (a key predictor) ----
# Summarise vaccination coverage by country and year
coverage_dt = table("coverage") %>%
lazy_dt() %>%
filter(d_v_a_id == !!d_v_a_id) %>%
# Summarise over age groups...
group_by(country, year) %>%
summarise(fvps = sum(fvps),
cohort = sum(cohort)) %>%
ungroup() %>%
# Recalculate for whole population...
mutate(coverage = fvps / cohort) %>%
select(country, year, coverage) %>%
as.data.table()
# ---- Append all other covariates ----
# Spread covariates to wide format
covariates_dt = table("regression_covariates") %>%
pivot_wider(names_from = metric) %>%
as.data.table()
# Create time-series tibble with all covariates
target_ts = target %>%
# Data for this d-v-a...
filter(d_v_a_id == !!d_v_a_id) %>%
select(-d_v_a_id) %>%
# Append vaccination coverage...
full_join(y = coverage_dt,
by = c("country", "year")) %>%
# Append all possible covariates...
full_join(y = covariates_dt,
by = c("country", "year")) %>%
arrange(country, year) %>%
# Lag any necessary covariates...
split(.$country) %>%
lapply(covar_lag_fn) %>%
rbindlist() %>%
# Only retain covariates defined in models...
select(country, year, target,
all_of(covars_retain)) %>%
fill(any_of(covars_retain),
.direction = "updown") %>%
# Convert to time-series tibble...
as_tsibble(index = year,
key = country)
return(target_ts)
}
# ---------------------------------------------------------
# Evaluate given user-specified model
# ---------------------------------------------------------
evaluate_model = function(id, models, covars, data) {
# Interpret covariate references
model_str = interpret_covars(models[[id]], covars)
# Construct full model string to be evaluated
model_fn = paste0("TSLM(log(target) ~ ", model_str, ")")
model_eval = paste0("model(data, tslm = ", model_fn, ")")
# Evaluate model and append model reference
model_mab = eval_str(model_eval) %>%
mutate(model_id = id,
.before = tslm) %>%
suppressWarnings()
return(model_mab)
}
# ---------------------------------------------------------
# Evaluate chosen model for all settings
# ---------------------------------------------------------
evaluate_predictions = function(model_choice, model_list, target, grouping) {
# Full set of models available - we'll subset for this modal ID
list[models, covars] = define_models("impute")
# Evaluate models on the training data
predict_dt = augment(model_choice) %>%
select(country, year, prediction = .fitted) %>%
as.data.table()
# Find most commonly chosen model by region and/or income group
group_mode_dt = model_choice %>%
filter(!is.na(model_id)) %>%
count(region, income, model_id) %>%
arrange(region, income, desc(n), model_id) %>%
group_by(region, income) %>%
slice_max(n, n = 1, with_ties = FALSE) %>%
select(region, income, mode = model_id) %>%
as.data.table()
# Use model selected for upper-middle income countries for high income countries
group_choice_dt = expand_grid(
region = table("region_dict")$region,
income = table("income_dict")$income) %>%
left_join(y = group_mode_dt,
by = c("region", "income")) %>%
fill(mode, .direction = "updown") %>%
as.data.table()
# ---- Summarise predictor coefficients from training countries ----
# Best model coefficients
coefficient_dt = model_choice %>%
tidy() %>%
lazy_dt() %>%
# Median coefficient by region and income group to avoid outliers...
group_by(region, income, model_id, term) %>%
summarise(estimate = median(estimate, na.rm = TRUE)) %>%
ungroup() %>%
# Spread to wide format...
pivot_wider(
names_from = term,
names_glue = "{term}_coefficient",
values_from = estimate) %>%
as.data.table()
# Allocate chosen model and summarised coefficients to imputed countries
impute_choice_dt = model_choice %>%
as_tibble() %>%
select(-tslm, -AICc, -region, -income) %>%
# Full set of countries...
full_join(y = grouping,
by ="country") %>%
fill(d_v_a_id, .direction = "downup") %>%
filter(is.na(model_id)) %>%
# Append mode model choice by region and income...
left_join(group_choice_dt,
by = c("region", "income")) %>%
arrange(region, income) %>%
mutate(model_id = mode) %>%
select(-mode) %>%
# Append predictor coefficients for imputed countries...
left_join(coefficient_dt,
by = c("region", "income", "model_id")) %>%
arrange(region, income, model_id) %>%
# Use coefficients for upper-middle income countries for high income countries...
group_by(region, model_id) %>%
fill(contains("coefficient"), .direction = "up") %>%
ungroup() %>%
as.data.table()
# ---- Full summary of models and predictors for every country ----
# All coefficients including imputed
full_coefficient_dt = tidy(model_choice) %>%
select(d_v_a_id, country, model_id,
income, region, term, estimate) %>%
# Spread to wide format...
pivot_wider(
names_from = term,
names_glue = "{term}_coefficient",
values_from = estimate) %>%
# Bind with imputed values
rbind(impute_choice_dt) %>%
replace(is.na(.), 0) %>%
as.data.table()
# ---- Construct predictor function call ----
# Small function to wrap a string in quotes
quote = function(x, q = '"')
paste0(q, x, q)
# Column names of predictors
predict_covars = models %>%
interpret_covars(covars) %>%
str_remove_all(" ") %>%
str_split("\\+") %>%
pluck(length(.))
# Construct linear product of predictors and coefficients
predict_str = predict_covars %>%
paste1("coefficient") %>%
quote("`") %>%
paste(predict_covars, sep = " * ") %>%
paste(collapse = " + ")
# Alway add intercept to linear model
intercept_str = " + `(Intercept)_coefficient`"
# Construct complete function call to be evaluated
predict_fn = paste0("prediction = exp(", predict_str, intercept_str, ")")
predict_eval = paste0("predictors %>% mutate(", predict_fn, ")")
# Append coefficients to predictors
predictors = target %>%
left_join(y = grouping,
by = "country") %>%
left_join(y = full_coefficient_dt,
by = "country") %>%
replace(is.na(.), 0) %>%
as.data.table()
# Evaluate function call to predict all target values
predict_dt = eval_str(predict_eval) %>%
select(country, year, prediction) %>%
filter(prediction < 1e-3)
return(predict_dt)
}
# ---------------------------------------------------------
# Evaluate given user-specified model
# ---------------------------------------------------------
interpret_covars = function(model, covars) {
# Interpret shorthand references
for (covar in names(covars))
model = str_replace_all(
string = model,
pattern = paste0("\\b", covar, "\\b"),
replacement = covars[[covar]])
return(model)
}