@@ -73,13 +73,17 @@ get_aggs <- function() {
73
73
# # Mask wearing and distancing
74
74
" pct_wearing_mask_5d" , " c_mask_often" , compute_binary , jeffreys_binary ,
75
75
" pct_wearing_mask_7d" , " c_mask_often_7d" , compute_binary , jeffreys_binary ,
76
+ " pct_others_masked" , " c_others_masked" , compute_binary , jeffreys_binary ,
76
77
" pct_others_masked_public" , " c_others_masked_public" , compute_binary , jeffreys_binary ,
77
78
" pct_others_distanced_public" , " c_others_distanced_public" , compute_binary , jeffreys_binary ,
78
79
79
80
" pct_cli" , " hh_p_cli" , compute_household_binary , jeffreys_count ,
80
81
" pct_ili" , " hh_p_ili" , compute_household_binary , jeffreys_count ,
81
82
" pct_hh_cmnty_cli" , " hh_community_yes" , compute_binary , jeffreys_binary ,
83
+ " pct_nohh_cmnty_cli" , " community_yes" , compute_binary , jeffreys_binary ,
82
84
" pct_direct_contact" , " c_direct_contact" , compute_binary , jeffreys_binary ,
85
+ " pct_avoid_contact" , " c_avoid_contact" , compute_binary , jeffreys_binary ,
86
+ " pct_avoid_contact_7d" , " c_avoid_contact_7d" , compute_binary , jeffreys_binary ,
83
87
84
88
# symptoms
85
89
" pct_symp_fever" , " symp_fever" , compute_binary , jeffreys_binary ,
@@ -303,8 +307,6 @@ get_aggs <- function() {
303
307
" pct_race_treated_fairly_healthcare" , " b_race_treated_fairly_healthcare" , compute_binary , jeffreys_binary ,
304
308
" pct_delayed_care_cost" , " b_delayed_care_cost" , compute_binary , jeffreys_binary ,
305
309
306
- " pct_worried_catch_covid" , " mh_worried_catch_covid" , compute_binary , jeffreys_binary ,
307
-
308
310
# topics want to learn about
309
311
" pct_want_info_covid_treatment" , " i_want_info_covid_treatment" , compute_binary , jeffreys_binary ,
310
312
" pct_want_info_vaccine_access" , " i_want_info_vaccine_access" , compute_binary , jeffreys_binary ,
@@ -355,6 +357,8 @@ get_aggs <- function() {
355
357
" pct_anxious_7d" , " mh_anxious_7d" , compute_binary , jeffreys_binary ,
356
358
" pct_depressed_7d" , " mh_depressed_7d" , compute_binary , jeffreys_binary ,
357
359
" pct_felt_isolated_7d" , " mh_isolated_7d" , compute_binary , jeffreys_binary ,
360
+ # wave 11
361
+ " pct_worried_catch_covid" , " mh_worried_catch_covid" , compute_binary , jeffreys_binary ,
358
362
359
363
# travel outside state
360
364
# pre-wave 10
@@ -420,7 +424,11 @@ get_aggs <- function() {
420
424
" pct_vaccine_barrier_type_tried" , " v_vaccine_barrier_type_tried" , compute_binary , jeffreys_binary ,
421
425
" pct_vaccine_barrier_none_tried" , " v_vaccine_barrier_none_tried" , compute_binary , jeffreys_binary ,
422
426
" pct_vaccine_barrier_appointment_location_tried" , " v_vaccine_barrier_appointment_location_tried" , compute_binary , jeffreys_binary ,
423
- " pct_vaccine_barrier_other_tried" , " v_vaccine_barrier_other_tried" , compute_binary , jeffreys_binary
427
+ " pct_vaccine_barrier_other_tried" , " v_vaccine_barrier_other_tried" , compute_binary , jeffreys_binary ,
428
+
429
+ # schooling
430
+ " pct_inperson_school_fulltime" , " s_inperson_school_fulltime" , compute_binary , jeffreys_binary ,
431
+ " pct_inperson_school_parttime" , " s_inperson_school_parttime" , compute_binary , jeffreys_binary
424
432
)
425
433
426
434
aggs <- create_aggs_product(regions , groups , indicators )
0 commit comments