@@ -134,6 +134,7 @@ get_aggs <- function() {
134134 " pct_covid_vaccinated_friends" , " v_covid_vaccinated_friends" , compute_binary , jeffreys_binary ,
135135
136136 " pct_vaccinate_children" , " v_vaccinate_children" , compute_binary , jeffreys_binary ,
137+ " pct_vaccinate_child_oldest" , " v_vaccinate_child_oldest" , compute_binary , jeffreys_binary ,
137138
138139 " pct_accept_vaccine_defyes" , " v_accept_vaccine_defyes" , compute_binary , jeffreys_multinomial_factory(4 ),
139140 " pct_accept_vaccine_probyes" , " v_accept_vaccine_probyes" , compute_binary , jeffreys_multinomial_factory(4 ),
@@ -202,6 +203,7 @@ get_aggs <- function() {
202203 " pct_hesitant_barrier_health_condition" , " v_hesitant_barrier_health_condition" , compute_binary , jeffreys_binary ,
203204 " pct_hesitant_barrier_pregnant" , " v_hesitant_barrier_pregnant" , compute_binary , jeffreys_binary ,
204205 " pct_hesitant_barrier_other" , " v_hesitant_barrier_other" , compute_binary , jeffreys_binary ,
206+ " pct_hesitant_barrier_dislike_vaccines_generally" , " v_hesitant_barrier_dislike_vaccines_generally" , compute_binary , jeffreys_binary ,
205207
206208 " pct_hesitant_dontneed_reason_had_covid" , " v_hesitant_dontneed_reason_had_covid" , compute_binary , jeffreys_binary ,
207209 " pct_hesitant_dontneed_reason_dont_spend_time" , " v_hesitant_dontneed_reason_dont_spend_time" , compute_binary , jeffreys_binary ,
@@ -226,6 +228,7 @@ get_aggs <- function() {
226228 " pct_barrier_health_condition" , " v_hesitancy_reason_health_condition" , compute_binary , jeffreys_binary ,
227229 " pct_barrier_pregnant" , " v_hesitancy_reason_pregnant" , compute_binary , jeffreys_binary ,
228230 " pct_barrier_other" , " v_hesitancy_reason_other" , compute_binary , jeffreys_binary ,
231+ " pct_barrier_dislike_vaccines_generally" , " v_hesitancy_reason_dislike_vaccines_generally" , compute_binary , jeffreys_binary ,
229232
230233 # vaccine "don't need" reasons
231234 " pct_dontneed_reason_had_covid" , " v_dontneed_reason_had_covid_5abc_6" , compute_binary , jeffreys_binary ,
@@ -251,6 +254,7 @@ get_aggs <- function() {
251254 " pct_defno_barrier_health_condition" , " v_defno_barrier_health_condition" , compute_binary , jeffreys_binary ,
252255 " pct_defno_barrier_pregnant" , " v_defno_barrier_pregnant" , compute_binary , jeffreys_binary ,
253256 " pct_defno_barrier_other" , " v_defno_barrier_other" , compute_binary , jeffreys_binary ,
257+ " pct_defno_barrier_dislike_vaccines_generally" , " v_defno_barrier_dislike_vaccines_generally" , compute_binary , jeffreys_binary ,
254258
255259 " pct_defno_dontneed_reason_had_covid" , " v_defno_dontneed_reason_had_covid" , compute_binary , jeffreys_binary ,
256260 " pct_defno_dontneed_reason_dont_spend_time" , " v_defno_dontneed_reason_dont_spend_time" , compute_binary , jeffreys_binary ,
@@ -283,6 +287,8 @@ get_aggs <- function() {
283287 " pct_vaccine_barrier_time" , " v_vaccine_barrier_time" , compute_binary , jeffreys_binary ,
284288 " pct_vaccine_barrier_type" , " v_vaccine_barrier_type" , compute_binary , jeffreys_binary ,
285289 " pct_vaccine_barrier_none" , " v_vaccine_barrier_none" , compute_binary , jeffreys_binary ,
290+ " pct_vaccine_barrier_appointment_location" , " v_vaccine_barrier_appointment_location" , compute_binary , jeffreys_binary ,
291+ " pct_vaccine_barrier_other" , " v_vaccine_barrier_other" , compute_binary , jeffreys_binary ,
286292
287293 # beliefs
288294 " pct_belief_masking_effective" , " b_belief_masking_effective" , compute_binary , jeffreys_binary ,
@@ -396,6 +402,8 @@ get_aggs <- function() {
396402 " pct_vaccine_barrier_time_has" , " v_vaccine_barrier_time_has" , compute_binary , jeffreys_binary ,
397403 " pct_vaccine_barrier_type_has" , " v_vaccine_barrier_type_has" , compute_binary , jeffreys_binary ,
398404 " pct_vaccine_barrier_none_has" , " v_vaccine_barrier_none_has" , compute_binary , jeffreys_binary ,
405+ " pct_vaccine_barrier_appointment_location_has" , " v_vaccine_barrier_appointment_location_has" , compute_binary , jeffreys_binary ,
406+ " pct_vaccine_barrier_other_has" , " v_vaccine_barrier_other_has" , compute_binary , jeffreys_binary ,
399407
400408 # vaccine barriers for tried vaccinated
401409 " pct_vaccine_barrier_eligible_tried" , " v_vaccine_barrier_eligible_tried" , compute_binary , jeffreys_binary ,
@@ -409,7 +417,9 @@ get_aggs <- function() {
409417 " pct_vaccine_barrier_childcare_tried" , " v_vaccine_barrier_childcare_tried" , compute_binary , jeffreys_binary ,
410418 " pct_vaccine_barrier_time_tried" , " v_vaccine_barrier_time_tried" , compute_binary , jeffreys_binary ,
411419 " pct_vaccine_barrier_type_tried" , " v_vaccine_barrier_type_tried" , compute_binary , jeffreys_binary ,
412- " pct_vaccine_barrier_none_tried" , " v_vaccine_barrier_none_tried" , compute_binary , jeffreys_binary
420+ " pct_vaccine_barrier_none_tried" , " v_vaccine_barrier_none_tried" , compute_binary , jeffreys_binary ,
421+ " pct_vaccine_barrier_appointment_location_tried" , " v_vaccine_barrier_appointment_location_tried" , compute_binary , jeffreys_binary ,
422+ " pct_vaccine_barrier_other_tried" , " v_vaccine_barrier_other_tried" , compute_binary , jeffreys_binary
413423 )
414424
415425 aggs <- create_aggs_product(regions , groups , indicators )
0 commit comments