-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables_dates.py
More file actions
526 lines (440 loc) · 19.6 KB
/
variables_dates.py
File metadata and controls
526 lines (440 loc) · 19.6 KB
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
from ehrql import (
days,
case,
when,
minimum_of,
)
# Bring table definitions from the TPP backend
from ehrql.tables.tpp import (
patients,
vaccinations,
ons_deaths,
)
# Codelists from codelists.py (which pulls all variables from the codelist folder)
from codelists import *
from datetime import date
# Call functions from variable_helper_functions
from variable_helper_functions import (
last_matching_event_clinical_snomed_between,
last_matching_event_clinical_snomed_before,
last_matching_med_dmd_between,
)
# Define the study_dates dictionary
import json
with open("output/study_dates.json") as f:
study_dates = json.load(f)
# Extracting all variables from the study_dates dictionary
ref_age_1 = study_dates["ref_age_1"] # reference date for calculating age for phase 1 groups
ref_age_2 = study_dates["ref_age_2"] # reference date for calculating age for phase 2 groups
ref_cev = study_dates["ref_cev"] # reference date for calculating eligibility for phase 1 group 4 (CEV)
ref_ar = study_dates["ref_ar"] # reference date for calculating eligibility for phase 1 group 5 (at-risk)
pandemic_start = study_dates["pandemic_start"] # rough start date for pandemic in UK
vax1_earliest = study_dates["vax1_earliest"] # earliest expectation date for first vaccination
vax2_earliest = study_dates["vax2_earliest"] # earliest expectation date for 2nd vaccination
vax3_earliest = study_dates["vax3_earliest"] # earliest expectation date for 3rd vaccination
# JCVI VARIABLES-------------------------------------------------------------------------------------------------------------------
# Age on phase 1 reference date
vax_jcvi_age_1 = patients.age_on(ref_age_1)
# Age on phase 2 reference date
vax_jcvi_age_2 = patients.age_on(ref_age_2)
# preg_group (ongoing pregnancy as of the ref_cev)------------------------------------------
## Derived variables
cov_cat_sex = patients.sex # this is required for preg_group variables
## Date of last pregnancy code in 36 weeks before ref_cev
preg_36wks_date = last_matching_event_clinical_snomed_between(
preg_primis, ref_cev - days(252), ref_cev - days(1)
).date
## Date of last delivery code recorded in 36 weeks before elig_date
pregdel_pre_date = last_matching_event_clinical_snomed_between(
pregdel_primis, ref_cev - days(252), ref_cev - days(1)
).date
preg_group = (
(preg_36wks_date.is_not_null()) &
(cov_cat_sex == "female") &
(vax_jcvi_age_1 < 50) &
(
(pregdel_pre_date <= preg_36wks_date) | (pregdel_pre_date.is_null())
)
)
# cev_group (clinically extremely vulnerable group variables)--------------------------------
## Derived variables
## SHIELDED GROUP - first flag all patients with "high risk" codes
severely_clinically_vulnerable = last_matching_event_clinical_snomed_before(
shield_primis, ref_cev
).exists_for_patient()
## Find date at which the high risk code was added
severely_clinically_vulnerable_date = last_matching_event_clinical_snomed_before(
shield_primis, ref_cev
).date
## NOT SHIELDED GROUP (medium and low risk) - only flag if later than 'shielded'
less_vulnerable = last_matching_event_clinical_snomed_between(
nonshield_primis, severely_clinically_vulnerable_date + days(1), ref_cev - days(1)
).exists_for_patient()
cev_group = (
severely_clinically_vulnerable & (less_vulnerable == False)
)
# Derived variables for at risk group-----------------------------------------------------
# asthma_group
## Derived variables for asthma_group
## Asthma Diagnosis codes
astdx = last_matching_event_clinical_snomed_before(
ast_primis, ref_ar
).exists_for_patient()
## Asthma Admission codes
astadm = last_matching_event_clinical_snomed_before(
astadm_primis, ref_ar
).exists_for_patient()
## Asthma systemic steroid prescription code in month 1
astrxm1 = last_matching_med_dmd_between(
astrx_primis, ref_ar - days(31), ref_ar - days(1)
).exists_for_patient()
## Asthma systemic steroid prescription code in month 2
astrxm2 = last_matching_med_dmd_between(
astrx_primis, ref_ar - days(61), ref_ar - days(32)
).exists_for_patient()
## Asthma systemic steroid prescription code in month 3
astrxm3 = last_matching_med_dmd_between(
astrx_primis, ref_ar - days(91), ref_ar - days(62)
).exists_for_patient()
asthma_group = (
(astadm) | (astdx & astrxm1 & astrxm2 & astrxm3)
)
# resp_group (Chronic Respiratory Disease other than asthma)
resp_group = last_matching_event_clinical_snomed_before(
resp_primis, ref_ar
).exists_for_patient()
# cns_group (Chronic Neurological Disease including Significant Learning Disorder)
cns_group = last_matching_event_clinical_snomed_before(
cns_primis, ref_ar
).exists_for_patient()
# diab_group (Diabetes)
## Derived variables for diab_group (Diabetes)
## Diabetes diagnosis codes
diab_date = last_matching_event_clinical_snomed_before(
diab_primis, ref_ar
).date
## Diabetes resolved codes
dmres_date = last_matching_event_clinical_snomed_before(
dmres_primis, ref_ar
).date
diab_group = (
(dmres_date.is_null() & diab_date.is_not_null()) | (dmres_date < diab_date)
)
# sevment_group (severe mental illness codes)
## Derived variables for sevment_group (severe mental illness codes)
## Severe Mental Illness codes
sev_mental_date = last_matching_event_clinical_snomed_before(
sev_mental_primis, ref_ar
).date
## Remission codes relating to Severe Mental Illness
smhres_date = last_matching_event_clinical_snomed_before(
smhres_primis, ref_ar
).date
sevment_group = (
(smhres_date.is_null() & sev_mental_date.is_not_null()) | (smhres_date < sev_mental_date)
)
# chd_group (Chronic heart disease codes)
chd_group = last_matching_event_clinical_snomed_before(
chd_primis, ref_ar
).exists_for_patient()
# ckd_group (Chronic kidney disease diagnostic codes)
## Derived variables for ckd_group (Chronic kidney disease diagnostic codes)
## Chronic kidney disease codes - all stages
ckd15_date = last_matching_event_clinical_snomed_before(
ckd15_primis, ref_ar
).date
## Chronic kidney disease codes-stages 3 - 5
ckd35_date = last_matching_event_clinical_snomed_before(
ckd35_primis, ref_ar
).date
## Chronic kidney disease diagnostic codes
ckd = last_matching_event_clinical_snomed_before(
ckd_primis, ref_ar
).exists_for_patient()
ckd_group = (
ckd |
(ckd15_date.is_not_null() & (ckd35_date >= ckd15_date)) |
(ckd35_date.is_not_null() & ckd15_date.is_null())
)
# cld_group (Chronic Liver disease codes)
cld_group = last_matching_event_clinical_snomed_before(
cld_primis, ref_ar
).exists_for_patient()
# immuno_group (immunosuppressed)
## Derived variables for immuno_group (immunosuppressed)
## Immunosuppression diagnosis codes
immdx = last_matching_event_clinical_snomed_before(
immdx_primis, ref_ar
).exists_for_patient()
## Immunosuppression medication codes
immrx = last_matching_med_dmd_between(
immrx_primis, ref_ar - days(180), ref_ar - days(1)
).exists_for_patient()
immuno_group = (immdx | immrx)
# spln_group (Asplenia or Dysfunction of the Spleen codes)
spln_group = last_matching_event_clinical_snomed_before(
spln_primis, ref_ar
).exists_for_patient()
# learndis_group (Wider Learning Disability)
learndis_group = last_matching_event_clinical_snomed_before(
learndis_primis, ref_ar
).exists_for_patient()
# sevobese_group (Severe obesity)
## Derived variables for sevobese_group (Severe obesity)
## All BMI coded terms
bmi_stage_date = last_matching_event_clinical_snomed_before(
bmi_stage_primis, ref_ar
).date
## Severe Obesity code recorded
sev_obesity_date = last_matching_event_clinical_snomed_between(
sev_obesity_primis, bmi_stage_date, ref_ar - days(1)
).date
## BMI_primis
bmi_date = last_matching_event_clinical_snomed_before(
bmi_primis, ref_ar
).date
## BMI value
bmi_value_temp = last_matching_event_clinical_snomed_before(
bmi_primis, ref_ar
).numeric_value
sevobese_group = (
(sev_obesity_date.is_not_null() & bmi_date.is_null()) |
(sev_obesity_date > bmi_date) |
(bmi_value_temp >= 40)
)
# atrisk_group (at risk group) (??why the previous studies exlcuding asthma group)
atrisk_group = (
asthma_group |
resp_group |
cns_group |
diab_group |
sevment_group |
chd_group |
ckd_group |
cld_group |
immuno_group |
spln_group |
learndis_group |
sevobese_group
)
# longres_group (Patients in long-stay nursing and residential care)----------------------------
longres_group = last_matching_event_clinical_snomed_before(
longres_primis, vax1_earliest
).exists_for_patient()
# jcvi_group
vax_cat_jcvi_group = case(
when((longres_group) & (vax_jcvi_age_1 > 65)).then("01"),
when(vax_jcvi_age_1 >= 80).then("02"),
when(vax_jcvi_age_1 >= 75).then("03"),
when((vax_jcvi_age_1 >= 70) |
(cev_group & (vax_jcvi_age_1 >= 16) & (~preg_group))).then("04"),
when(vax_jcvi_age_1 >= 65).then("05"),
when((atrisk_group) & (vax_jcvi_age_1 >= 16)).then("06"),
when(vax_jcvi_age_1 >= 60).then("07"),
when(vax_jcvi_age_1 >= 55).then("08"),
when(vax_jcvi_age_1 >= 50).then("09"),
when(vax_jcvi_age_2 >= 40).then("10"),
when(vax_jcvi_age_2 >= 30).then("11"),
when(vax_jcvi_age_2 >= 18).then("12"),
otherwise="99" # Default group if no other criteria are met
)
# vaccination eligible date according to jcvi
vax_date_eligible = case(
when((vax_cat_jcvi_group == "01") | (vax_cat_jcvi_group == "02")).then(date(2020, 12, 8)),
when((vax_cat_jcvi_group == "03") | (vax_cat_jcvi_group == "04")).then(date(2021, 1, 18)),
when((vax_cat_jcvi_group == "05") | (vax_cat_jcvi_group == "06")).then(date(2021, 2, 15)),
when((vax_cat_jcvi_group == "07") & (vax_jcvi_age_1 >= 64) & (vax_jcvi_age_1 < 65)).then(date(2021, 2, 22)),
when((vax_cat_jcvi_group == "07") & (vax_jcvi_age_1 >= 60) & (vax_jcvi_age_1 < 64)).then(date(2021, 3, 1)),
when((vax_cat_jcvi_group == "08") & (vax_jcvi_age_1 >= 56) & (vax_jcvi_age_1 < 60)).then(date(2021, 3, 8)),
when((vax_cat_jcvi_group == "08") & (vax_jcvi_age_1 >= 55) & (vax_jcvi_age_1 < 56)).then(date(2021, 3, 9)),
when((vax_cat_jcvi_group == "09") & (vax_jcvi_age_1 >= 50) & (vax_jcvi_age_1 < 55)).then(date(2021, 3, 19)),
when((vax_cat_jcvi_group == "10") & (vax_jcvi_age_2 >= 45) & (vax_jcvi_age_1 < 50)).then(date(2021, 4, 13)),
when((vax_cat_jcvi_group == "10") & (vax_jcvi_age_2 >= 44) & (vax_jcvi_age_1 < 45)).then(date(2021, 4, 26)),
when((vax_cat_jcvi_group == "10") & (vax_jcvi_age_2 >= 42) & (vax_jcvi_age_1 < 44)).then(date(2021, 4, 27)),
when((vax_cat_jcvi_group == "10") & (vax_jcvi_age_2 >= 40) & (vax_jcvi_age_1 < 42)).then(date(2021, 4, 30)),
when((vax_cat_jcvi_group == "11") & (vax_jcvi_age_2 >= 38) & (vax_jcvi_age_2 < 40)).then(date(2021, 5, 13)),
when((vax_cat_jcvi_group == "11") & (vax_jcvi_age_2 >= 36) & (vax_jcvi_age_2 < 38)).then(date(2021, 5, 19)),
when((vax_cat_jcvi_group == "11") & (vax_jcvi_age_2 >= 34) & (vax_jcvi_age_2 < 36)).then(date(2021, 5, 21)),
when((vax_cat_jcvi_group == "11") & (vax_jcvi_age_2 >= 32) & (vax_jcvi_age_2 < 34)).then(date(2021, 5, 25)),
when((vax_cat_jcvi_group == "11") & (vax_jcvi_age_2 >= 30) & (vax_jcvi_age_2 < 32)).then(date(2021, 5, 26)),
when((vax_cat_jcvi_group == "12") & (vax_jcvi_age_2 >= 25) & (vax_jcvi_age_2 < 30)).then(date(2021, 6, 8)),
when((vax_cat_jcvi_group == "12") & (vax_jcvi_age_2 >= 23) & (vax_jcvi_age_2 < 25)).then(date(2021, 6, 15)),
when((vax_cat_jcvi_group == "12") & (vax_jcvi_age_2 >= 21) & (vax_jcvi_age_2 < 23)).then(date(2021, 6, 16)),
when((vax_cat_jcvi_group == "12") & (vax_jcvi_age_2 >= 18) & (vax_jcvi_age_2 < 21)).then(date(2021, 6, 18)),
otherwise=date(2100, 12, 31) # Default if no other criteria are met
)
# Define a dictionary of JCVI variables created above
jcvi_variables = dict(
vax_jcvi_age_1=vax_jcvi_age_1, # Age on phase 1 reference date
vax_jcvi_age_2=vax_jcvi_age_2, # Age on phase 2 reference date
preg_group=preg_group, # Ongoing pregnancy as of the ref_cev
cev_group=cev_group, # Clinically extremely vulnerable group
asthma_group=asthma_group, # Asthma diagnosis and treatment history
resp_group=resp_group, # Chronic Respiratory Disease other than asthma
cns_group=cns_group, # Chronic Neurological Disease including Significant Learning Disorder
diab_group=diab_group, # Diabetes diagnosis and treatment history
sevment_group=sevment_group, # Severe mental illness
chd_group=chd_group, # Chronic heart disease
ckd_group=ckd_group, # Chronic kidney disease
cld_group=cld_group, # Chronic Liver disease
immuno_group=immuno_group, # Immunosuppressed
spln_group=spln_group, # Asplenia or Dysfunction of the Spleen
learndis_group=learndis_group, # Wider Learning Disability
sevobese_group=sevobese_group, # Severe obesity
atrisk_group=atrisk_group, # Combined at-risk group
longres_group=longres_group, # Patients in long-stay nursing and residential care
vax_cat_jcvi_group=vax_cat_jcvi_group, # jcvi_group
vax_date_eligible=vax_date_eligible, # Vaccination eligible date according to jcvi
)
# PRELIMINARY DATE VARIABLES------------------------------------------------------------------------------------------------------------------------------------
# Add death date----------------------------------------------------------------------------------
## Primary care
primary_care_death_date = case(
when(patients.date_of_death.is_on_or_after(pandemic_start)).then(patients.date_of_death)
)
## ONS
ons_died_from_any_cause_date = case(
when(ons_deaths.date.is_on_or_after(pandemic_start)).then(ons_deaths.date)
)
death_date = minimum_of(primary_care_death_date, ons_died_from_any_cause_date)
# add vaccination dates----------------------------------------------------------------------------
# COVID-19 Vaccination (identified by target diseases of the vaccination)
vax_date_covid_1 = (
vaccinations.where(
vaccinations.target_disease.contains("SARS-2 CORONAVIRUS"))
.where(vaccinations.date.is_on_or_after(vax1_earliest))
.sort_by(vaccinations.date)
.first_for_patient()
.date
)
vax_date_covid_2 = (
vaccinations.where(
vaccinations.target_disease.contains("SARS-2 CORONAVIRUS"))
.where(vaccinations.date > vax_date_covid_1) # Exclude the first date
.sort_by(vaccinations.date)
.first_for_patient()
.date # Now this will be the second date
)
vax_date_covid_3 = (
vaccinations.where(
vaccinations.target_disease.contains("SARS-2 CORONAVIRUS"))
.where(vaccinations.date > vax_date_covid_2) # Exclude the first and second date
.sort_by(vaccinations.date)
.first_for_patient()
.date # Now this will be the third date
)
vax_num_covid = (
vaccinations.where(
vaccinations.target_disease.contains("SARS-2 CORONAVIRUS"))
.sort_by(vaccinations.date)
.count_for_patient()
)
# Pfizer BioNTech Vaccination (identified by vaccination_id.product_name: 28.COVID-19 mRNA Vaccine Comirnaty 30micrograms/0.3ml dose conc for susp for inj MDV (Pfizer))
vax_date_Pfizer_1 = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 mRNA Vaccine Comirnaty 30micrograms/0.3ml dose conc for susp for inj MDV (Pfizer)"))
.where(vaccinations.date.is_on_or_after(vax1_earliest))
.sort_by(vaccinations.date)
.first_for_patient()
.date
)
vax_date_Pfizer_2 = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 mRNA Vaccine Comirnaty 30micrograms/0.3ml dose conc for susp for inj MDV (Pfizer)"))
.where(vaccinations.date > vax_date_Pfizer_1) # Exclude the first date
.sort_by(vaccinations.date)
.first_for_patient()
.date # Now this will be the second date
)
vax_date_Pfizer_3 = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 mRNA Vaccine Comirnaty 30micrograms/0.3ml dose conc for susp for inj MDV (Pfizer)"))
.where(vaccinations.date > vax_date_Pfizer_2) # Exclude the first and second date
.sort_by(vaccinations.date)
.first_for_patient()
.date # Now this will be the third date
)
vax_num_Pfizer = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 mRNA Vaccine Comirnaty 30micrograms/0.3ml dose conc for susp for inj MDV (Pfizer)"))
.sort_by(vaccinations.date)
.count_for_patient()
)
# Oxford AZ Vaccination (identified by vaccination_id.product_name: 49.COVID-19 Vaccine Vaxzevria 0.5ml inj multidose vials (AstraZeneca))
vax_date_AstraZeneca_1 = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 Vaccine Vaxzevria 0.5ml inj multidose vials (AstraZeneca)"))
.where(vaccinations.date.is_on_or_after(vax1_earliest))
.sort_by(vaccinations.date)
.first_for_patient()
.date
)
vax_date_AstraZeneca_2 = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 Vaccine Vaxzevria 0.5ml inj multidose vials (AstraZeneca)"))
.where(vaccinations.date > vax_date_AstraZeneca_1) # Exclude the first date
.sort_by(vaccinations.date)
.first_for_patient()
.date # Now this will be the second date
)
vax_date_AstraZeneca_3 = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 Vaccine Vaxzevria 0.5ml inj multidose vials (AstraZeneca)"))
.where(vaccinations.date > vax_date_AstraZeneca_2) # Exclude the first and second date
.sort_by(vaccinations.date)
.first_for_patient()
.date # Now this will be the third date
)
vax_num_AstraZeneca = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 Vaccine Vaxzevria 0.5ml inj multidose vials (AstraZeneca)"))
.sort_by(vaccinations.date)
.count_for_patient()
)
# Moderna Vaccination (identified by vaccination_id.product_name: 30.COVID-19 mRNA Vaccine Spikevax (nucleoside modified) 0.1mg/0.5mL dose disp for inj MDV (Moderna))
vax_date_Moderna_1 = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 mRNA Vaccine Spikevax (nucleoside modified) 0.1mg/0.5mL dose disp for inj MDV (Moderna)"))
.where(vaccinations.date.is_on_or_after(vax1_earliest))
.sort_by(vaccinations.date)
.first_for_patient()
.date
)
vax_date_Moderna_2 = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 mRNA Vaccine Spikevax (nucleoside modified) 0.1mg/0.5mL dose disp for inj MDV (Moderna)"))
.where(vaccinations.date > vax_date_Moderna_1) # Exclude the first date
.sort_by(vaccinations.date)
.first_for_patient()
.date # Now this will be the second date
)
vax_date_Moderna_3 = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 mRNA Vaccine Spikevax (nucleoside modified) 0.1mg/0.5mL dose disp for inj MDV (Moderna)"))
.where(vaccinations.date > vax_date_Moderna_2) # Exclude the first and second date
.sort_by(vaccinations.date)
.first_for_patient()
.date # Now this will be the third date
)
vax_num_Moderna = (
vaccinations.where(
(vaccinations.product_name == "COVID-19 mRNA Vaccine Spikevax (nucleoside modified) 0.1mg/0.5mL dose disp for inj MDV (Moderna)"))
.sort_by(vaccinations.date)
.count_for_patient()
)
# Define a dictionary of preliminary date variables (Death, Vaccination) created above
prelim_date_variables = dict(
cens_date_death=death_date,
vax_date_covid_1=vax_date_covid_1,
vax_date_covid_2=vax_date_covid_2,
vax_date_covid_3=vax_date_covid_3,
vax_date_Pfizer_1=vax_date_Pfizer_1,
vax_date_Pfizer_2=vax_date_Pfizer_2,
vax_date_Pfizer_3=vax_date_Pfizer_3,
vax_date_AstraZeneca_1=vax_date_AstraZeneca_1,
vax_date_AstraZeneca_2=vax_date_AstraZeneca_2,
vax_date_AstraZeneca_3=vax_date_AstraZeneca_3,
vax_date_Moderna_1=vax_date_Moderna_1,
vax_date_Moderna_2=vax_date_Moderna_2,
vax_date_Moderna_3=vax_date_Moderna_3,
)