Skip to contents

This function provide a report showing the number of distinct values for each fields. This report can be global (all the surveys) or displayed for each enumerator ID

Usage

surveyDistinctValues(ds = NULL, enumeratorID = NULL, enumeratorCheck = FALSE)

Arguments

ds

dataset containing the survey (from kobo): labelled data.frame

enumeratorID

name of the field where the enumerator ID is stored: string

enumeratorCheck

(Optional, by default set to FALSE) specify if the report has to be displayed for each enumerator or not: boolean (TRUE/FALSE)

checkperiod

if not null number of day before today when the check should be made

surveyConsent

name of the field in the dataset where the survey consent is stored: string

consentForValidSurvey

value defined in the kobo form to acknowledge the surveyed person gave his consent: string

Value

result a list that includes: * dst same dataset as the inputed one but with survey marked for deletion if errors are found and delete=TRUE (or NULL) * ret_log list of the errors found (or NULL) * var a list of value (or NULL) * graph graphical representation of the results (or NULL)

Examples

load(system.file("sample_dataset.RData", package = "HighFrequencyChecks")) 
ds <- sample_dataset
enumeratorID <- "enumerator_id"

result <- surveyDistinctValues(ds = ds,
                                                     enumeratorID=enumeratorID,
                                                     enumeratorCheck=FALSE)
knitr::kable(head(result[["ret_log"]], 10))  
#> 
#> 
#> |          |X.5 |instance_name |survey_date |survey_start |enumerator_org |enumerator_id |upazilla_name |union_name |informed_consent |survey_consent |consent_received.respondent_info.respondent_age |consent_received.respondent_info.respondent_gender |consent_received.respondent_info.hh_head |consent_received.respondent_info.hh_gender |consent_received.respondent_info.hh_size |consent_received.individual_information.repeat_introduction |consent_received.individual_information.inividual_info_count |consent_received.individual_information.adult_female_count |consent_received.individual_information.boy_6_11_count |consent_received.individual_information.girl_6_11_count |consent_received.individual_information.boy_12_18_count |consent_received.individual_information.girl_12_18_count |consent_received.individual_information.individual_edu_aid_count |consent_received.individual_information.hh_head_number_count |consent_received.individual_information.hhead_warning |consent_received.individual_information.individual_group_end |consent_received.wash.primary_watsource |consent_received.wash.primary_watsource_other |consent_received.wash.improved_water_access |consent_received.wash.improved_water_access_other |consent_received.wash.enough_water |consent_received.wash.hh_water_problem |consent_received.wash.water_collection_problem |consent_received.wash.water_collection_problem.too_far |consent_received.wash.water_collection_problem.too_steep |consent_received.wash.water_collection_problem.available_sometime |consent_received.wash.water_collection_problem.dangerous |consent_received.wash.water_collection_problem.tastes_bad |consent_received.wash.water_collection_problem.water_badsmell |consent_received.wash.water_collection_problem.water_notclean |consent_received.wash.water_collection_problem.dont_know |consent_received.wash.water_collection_problem.other |consent_received.wash.water_collection_problem_other |consent_received.wash.water_source_time |consent_received.wash.water_collection_time |consent_received.wash.water_treatment |consent_received.wash.water_treatment_time |consent_received.wash.water_treatment_method |consent_received.wash.water_treatment_method.aquatabs |consent_received.wash.water_treatment_method.pur_sachets |consent_received.wash.water_treatment_method.boiling |consent_received.wash.water_treatment_method.cloth_filters |consent_received.wash.water_treatment_method.household_filters |consent_received.wash.water_treatment_method.solar_disinfection |consent_received.wash.water_treatment_method.other |consent_received.wash.water_treatment_method_other |consent_received.wash.soap_handwash |consent_received.wash.hh_defecation |consent_received.wash.hh_defecation_other |consent_received.wash.latrine_access |consent_received.wash.latrine_access_problems |consent_received.wash.latrine_access_problems.latrine_too_far |consent_received.wash.latrine_access_problems.too_many_using |consent_received.wash.latrine_access_problems.latrine_notclean |consent_received.wash.latrine_access_problems.insufficient_water |consent_received.wash.latrine_access_problems.bad_smell |consent_received.wash.latrine_access_problems.open_defecation_near_lat |consent_received.wash.latrine_access_problems.not_private |consent_received.wash.latrine_access_problems.no_separation |consent_received.wash.latrine_access_problems.route_not_safe |consent_received.wash.latrine_access_problems.latrine_not_safe |consent_received.wash.latrine_access_problems.no_lighting |consent_received.wash.latrine_access_problems.dont_know |consent_received.wash.latrine_access_problems.other |consent_received.wash.latrine_access_problems_other |consent_received.wash.handwash_times |consent_received.wash.handwash_times.before_eating |consent_received.wash.handwash_times.before_cooking |consent_received.wash.handwash_times.after_defecation |consent_received.wash.handwash_times.before_breastfeeding |consent_received.wash.handwash_times.before_feeding_chid |consent_received.wash.handwash_times.after_child_bottom |consent_received.wash.handwash_times.before_prayer |consent_received.wash.handwash_times.hands_look_dirty |consent_received.wash.handwash_times.hands_feel_dirty |consent_received.wash.handwash_times.other |consent_received.wash.handwash_times.dntknow_prefer |consent_received.wash.handwash_times.after_eating |consent_received.wash.handwash_times_other |consent_received.wash.visible_trash |consent_received.wash.visible_faeces |consent_received.wash.visible_waste |consent_received.shelter_nfi.hh_roof_material |consent_received.shelter_nfi.hh_roof_material.tin |consent_received.shelter_nfi.hh_roof_material.tarpaulin |consent_received.shelter_nfi.hh_roof_material.hay |consent_received.shelter_nfi.hh_roof_material.brick_cemen |consent_received.shelter_nfi.hh_roof_material.bamboo |consent_received.shelter_nfi.hh_roof_material.wood |consent_received.shelter_nfi.hh_roof_material.other |consent_received.shelter_nfi.hh_roof_material_other |consent_received.shelter_nfi.hh_wall_material |consent_received.shelter_nfi.hh_wall_material.bricks |consent_received.shelter_nfi.hh_wall_material.clay |consent_received.shelter_nfi.hh_wall_material.bamboo |consent_received.shelter_nfi.hh_wall_material.cement |consent_received.shelter_nfi.hh_wall_material.tarpaulin |consent_received.shelter_nfi.hh_wall_material.wood |consent_received.shelter_nfi.hh_wall_material.tin |consent_received.shelter_nfi.hh_wall_material.other |consent_received.shelter_nfi.hh_wall_material_other |consent_received.shelter_nfi.hh_floor_material |consent_received.shelter_nfi.hh_floor_material.bricks |consent_received.shelter_nfi.hh_floor_material.cement |consent_received.shelter_nfi.hh_floor_material.wood |consent_received.shelter_nfi.hh_floor_material.dirt |consent_received.shelter_nfi.hh_floor_material.other |consent_received.shelter_nfi.hh_floor_material_other |consent_received.shelter_nfi.solar_light |consent_received.shelter_nfi.electricity_grid |consent_received.shelter_nfi.hh_electricity_access |consent_received.shelter_nfi.hh_cyclone_training |consent_received.shelter_nfi.hh_flood_training |consent_received.shelter_nfi.non_food_items |consent_received.shelter_nfi.non_food_items.solar_lamp |consent_received.shelter_nfi.non_food_items.portable_torch |consent_received.shelter_nfi.non_food_items.kitchen_set |consent_received.shelter_nfi.non_food_items.floor_mat |consent_received.shelter_nfi.non_food_items.cooking_stove |consent_received.shelter_nfi.non_food_items.blanket |consent_received.shelter_nfi.non_food_items.mosquito_net |consent_received.shelter_nfi.non_food_items.children_clothes |consent_received.shelter_nfi.non_food_items.male_clothes |consent_received.shelter_nfi.non_food_items.female_clothes |consent_received.shelter_nfi.non_food_items.radio |consent_received.shelter_nfi.non_food_items.umbrella |consent_received.shelter_nfi.non_food_items.fuel |consent_received.shelter_nfi.non_food_items.other |consent_received.shelter_nfi.non_food_items.latrine_bathroom |consent_received.shelter_nfi.non_food_items.tubewell |consent_received.shelter_nfi.non_food_items_other |consent_received.shelter_nfi.cooking_fuel |consent_received.shelter_nfi.cooking_fuel_other |consent_received.shelter_nfi.house_land_ownership |consent_received.shelter_nfi.house_land_ownership_other |consent_received.shelter_nfi.land_house_deed |consent_received.shelter_nfi.rent_hosted |consent_received.shelter_nfi.hh_agreement |consent_received.shelter_nfi.eviction |consent_received.ppi.hh_rooms |consent_received.ppi.hh_television |consent_received.ppi.hh_fans |consent_received.ppi.hh_phones |consent_received.ppi.hh_vehicle |consent_received.ppi.hh_agri_land |consent_received.food_security.food_crisis |consent_received.food_security.less_preferred_expensive |consent_received.food_security.borrowed_food |consent_received.food_security.limit_portion_size |consent_received.food_security.restrict_consumption |consent_received.food_security.reduce_meal_numbers |consent_received.food_security.eat_elsewhere |consent_received.food_security.women_eat_less |consent_received.food_security.men_eat_less |consent_received.food_security.nofood_wholeday |consent_received.food_security.food_list |consent_received.food_security.cereals_tubers |consent_received.food_security.pulses_nuts_seeds |consent_received.food_security.vegetables |consent_received.food_security.fruits |consent_received.food_security.dairy |consent_received.food_security.meat_fish |consent_received.food_security.oil_fats |consent_received.food_security.sweets |consent_received.food_security.spices_condiments |consent_received.food_security.market_access |consent_received.food_security.market_travel_time |consent_received.food_security.main_source_food |consent_received.food_security.main_source_food_other |consent_received.food_security.food_hh_sustain |consent_received.food_security.main_income |consent_received.food_security.main_income.non_agricultural |consent_received.food_security.main_income.agricultural |consent_received.food_security.main_income.domestic |consent_received.food_security.main_income.petty_trade |consent_received.food_security.main_income.small_business |consent_received.food_security.main_income.large_business |consent_received.food_security.main_income.skilled_labour |consent_received.food_security.main_income.fishing |consent_received.food_security.main_income.remittances |consent_received.food_security.main_income.handicrafts |consent_received.food_security.main_income.agricultural_production_sale |consent_received.food_security.main_income.livestock_rearing |consent_received.food_security.main_income.savings |consent_received.food_security.main_income.begging |consent_received.food_security.main_income.food |consent_received.food_security.main_income.other_cash_assistance |consent_received.food_security.main_income.sale_assistance |consent_received.food_security.main_income.assistance_relative_friends |consent_received.food_security.main_income.gather_sell_firewood |consent_received.food_security.main_income.zakat |consent_received.food_security.main_income.other |consent_received.food_security.main_income.none |consent_received.food_security.main_income_other |consent_received.food_security.hh_econ_status |consent_received.food_security.hh_living_standard |consent_received.food_security.hh_spending |consent_received.food_security.spend_food |consent_received.food_security.spend_medication |consent_received.food_security.spend_education |consent_received.food_security.spend_fix_shelter |consent_received.food_security.spend_clothing |consent_received.food_security.spend_hygiene |consent_received.food_security.spend_fuel |consent_received.food_security.spend_hh_items |consent_received.food_security.spend_transport |consent_received.food_security.spend_communication |consent_received.food_security.spend_tobacco |consent_received.food_security.spend_rent |consent_received.food_security.spend_debts |consent_received.food_security.spend_other |consent_received.food_security.work_outside_country |consent_received.food_security.study_outside_country |consent_received.food_security.marry_outside_country |consent_received.food_security.return_outside_country |consent_received.food_security.forced_work_outside_country |consent_received.food_security.never_heard_back |consent_received.health.health_access |consent_received.health.health_access_barriers |consent_received.health.health_access_barriers.health_facility_too_far |consent_received.health.health_access_barriers.infrequent_services |consent_received.health.health_access_barriers.treatment_unavailable |consent_received.health.health_access_barriers.overcrowded_services |consent_received.health.health_access_barriers.insufficient_poorquality_staff |consent_received.health.health_access_barriers.not_adequate_material |consent_received.health.health_access_barriers.dont_know_to_go |consent_received.health.health_access_barriers.safety_concerns |consent_received.health.health_access_barriers.too_expensive |consent_received.health.health_access_barriers.dont_trust_doctors |consent_received.health.health_access_barriers.face_discrimination |consent_received.health.health_access_barriers.other |consent_received.health.health_access_barriers_other |consent_received.health.new_health_facility |consent_received.health.no_access_new_facility |consent_received.health.no_access_new_facility.dont_know_about_services |consent_received.health.no_access_new_facility.services_too_far |consent_received.health.no_access_new_facility.servicesare_not_for_hc |consent_received.health.no_access_new_facility.prefer_services_already_exist |consent_received.health.no_access_new_facility.other |consent_received.health.no_access_new_facility_other |consent_received.health.comm_health_worker |consent_received.health.lactating_women |consent_received.health.pregnant_women |consent_received.health.clinic_visit_pregnancy |consent_received.health.hh_marriage_person |consent_received.health.women_breastfeed_problem |consent_received.health.women_breastfeed_problem.doctors |consent_received.health.women_breastfeed_problem.midwife_nurse |consent_received.health.women_breastfeed_problem.older_relatives |consent_received.health.women_breastfeed_problem.traditional_healer |consent_received.health.women_breastfeed_problem.other_mothers |consent_received.health.women_breastfeed_problem.friends |consent_received.health.women_breastfeed_problem.others |consent_received.health.women_breastfeed_problem.wouldnt_seek_help |consent_received.health.women_breastfeed_problem.not_applicable |consent_received.health.women_breastfeed_problem.dont_know |consent_received.health.women_breastfeed_problem_other |consent_received.education.boy_prim_edu_barrier |consent_received.education.boy_edu_barrier |consent_received.education.boy_edu_barrier.facillities_too_far |consent_received.education.boy_edu_barrier.safety_concerns_way_facilities |consent_received.education.boy_edu_barrier.services_too_expensive |consent_received.education.boy_edu_barrier.services_too_crowded |consent_received.education.boy_edu_barrier.insufficient_poorquality_staff |consent_received.education.boy_edu_barrier.school_not_adequate_infra |consent_received.education.boy_edu_barrier.school_not_adequate_material |consent_received.education.boy_edu_barrier.face_discrimination |consent_received.education.boy_edu_barrier.children_support_family |consent_received.education.boy_edu_barrier.parents_think_not_appropriate |consent_received.education.boy_edu_barrier.other |consent_received.education.boy_edu_barrier.dont_know |consent_received.education.boy_edu_barrier_other |consent_received.education.girl_prim_edu_barrier |consent_received.education.girl_edu_barrier |consent_received.education.girl_edu_barrier.facillities_too_far |consent_received.education.girl_edu_barrier.safety_concerns_way_facilities |consent_received.education.girl_edu_barrier.services_too_expensive |consent_received.education.girl_edu_barrier.services_too_crowded |consent_received.education.girl_edu_barrier.insufficient_poorquality_staff |consent_received.education.girl_edu_barrier.school_not_adequate_infra |consent_received.education.girl_edu_barrier.school_not_adequate_material |consent_received.education.girl_edu_barrier.face_discrimination |consent_received.education.girl_edu_barrier.children_support_family |consent_received.education.girl_edu_barrier.parents_think_not_appropriate |consent_received.education.girl_edu_barrier.other |consent_received.education.girl_edu_barrier.dont_know |consent_received.education.girl_edu_barrier_other |consent_received.education.boy_second_edu_barrier |consent_received.education.boy_edu_barrier_1 |consent_received.education.boy_edu_barrier_1.facillities_too_far |consent_received.education.boy_edu_barrier_1.safety_concerns_way_facilities |consent_received.education.boy_edu_barrier_1.services_too_expensive |consent_received.education.boy_edu_barrier_1.services_too_crowded |consent_received.education.boy_edu_barrier_1.insufficient_poorquality_staff |consent_received.education.boy_edu_barrier_1.school_not_adequate_infra |consent_received.education.boy_edu_barrier_1.school_not_adequate_material |consent_received.education.boy_edu_barrier_1.face_discrimination |consent_received.education.boy_edu_barrier_1.children_support_family |consent_received.education.boy_edu_barrier_1.parents_think_not_appropriate |consent_received.education.boy_edu_barrier_1.other |consent_received.education.boy_edu_barrier_1.dont_know |consent_received.education.boy_edu_barrier_1_other |consent_received.education.girl_second_edu_barrier |consent_received.education.girl_edu_barrier_1 |consent_received.education.girl_edu_barrier_1.facillities_too_far |consent_received.education.girl_edu_barrier_1.safety_concerns_way_facilities |consent_received.education.girl_edu_barrier_1.services_too_expensive |consent_received.education.girl_edu_barrier_1.services_too_crowded |consent_received.education.girl_edu_barrier_1.insufficient_poorquality_staff |consent_received.education.girl_edu_barrier_1.school_not_adequate_infra |consent_received.education.girl_edu_barrier_1.school_not_adequate_material |consent_received.education.girl_edu_barrier_1.face_discrimination |consent_received.education.girl_edu_barrier_1.children_support_family |consent_received.education.girl_edu_barrier_1.parents_think_not_appropriate |consent_received.education.girl_edu_barrier_1.other |consent_received.education.girl_edu_barrier_1.dont_know |consent_received.education.girl_edu_barrier_1_other |consent_received.education.child_rights |consent_received.education.child_education |consent_received.education.edu_aid_material |consent_received.education.edu_aid_kind |consent_received.education.edu_aid_kind.health_hygiene_kit |consent_received.education.edu_aid_kind.winterization_kit |consent_received.education.edu_aid_kind.school_supply |consent_received.education.edu_aid_kind.other |consent_received.education.edu_aid_kind.none |consent_received.education.edu_aid_kind.dont_know |consent_received.education.edu_aid_kind_other |consent_received.child_protection.missing_child |consent_received.child_protection.boy_risk |consent_received.child_protection.boy_risk.violence_home |consent_received.child_protection.boy_risk.violence_community |consent_received.child_protection.boy_risk.child_labour |consent_received.child_protection.boy_risk.child_marriage |consent_received.child_protection.boy_risk.recruitment_armed_group |consent_received.child_protection.boy_risk.kidnapping |consent_received.child_protection.boy_risk.detention |consent_received.child_protection.boy_risk.sexual_abuse |consent_received.child_protection.boy_risk.psychological_trauma |consent_received.child_protection.boy_risk.no_registration_newborn |consent_received.child_protection.boy_risk.natural_hazards |consent_received.child_protection.boy_risk.dntknow_no_answer |consent_received.child_protection.boy_risk.other |consent_received.child_protection.boy_risk_other |consent_received.child_protection.girl_risk |consent_received.child_protection.girl_risk.violence_home |consent_received.child_protection.girl_risk.violence_community |consent_received.child_protection.girl_risk.child_labour |consent_received.child_protection.girl_risk.child_marriage |consent_received.child_protection.girl_risk.recruitment_armed_group |consent_received.child_protection.girl_risk.kidnapping |consent_received.child_protection.girl_risk.detention |consent_received.child_protection.girl_risk.sexual_abuse |consent_received.child_protection.girl_risk.psychological_trauma |consent_received.child_protection.girl_risk.no_registration_newborn |consent_received.child_protection.girl_risk.natural_hazards |consent_received.child_protection.girl_risk.dntknow_no_answer |consent_received.child_protection.girl_risk.other |consent_received.child_protection.girl_risk_other |consent_received.child_protection.child_distress |consent_received.child_protection.child_distress.withdrawn_family_friends |consent_received.child_protection.child_distress.aggressive_outbursts |consent_received.child_protection.child_distress.changes_appetite_eating_habits |consent_received.child_protection.child_distress.headaches |consent_received.child_protection.child_distress.recurrent_bedwetting |consent_received.child_protection.child_distress.sleep_disturbances |consent_received.child_protection.child_distress.upset_stomach_pain |consent_received.child_protection.child_distress.new_recurring_fear |consent_received.child_protection.child_distress.clinging |consent_received.child_protection.child_distress.excessive_crying |consent_received.child_protection.child_distress.behave_younger |consent_received.child_protection.child_distress.startle_easily |consent_received.child_protection.child_distress.substance_abuse |consent_received.child_protection.child_distress.none |consent_received.child_protection.rohingya_interact |consent_received.child_protection.past_interaction_rohingya |consent_received.child_protection.past_interaction_rohingya.social_interactions |consent_received.child_protection.past_interaction_rohingya.buying_goods_services |consent_received.child_protection.past_interaction_rohingya.selling_goods_services |consent_received.child_protection.past_interaction_rohingya.working_for_rohingya |consent_received.child_protection.past_interaction_rohingya.hiring_rohingya_work |consent_received.child_protection.past_interaction_rohingya.renting_to_rohingya |consent_received.child_protection.past_interaction_rohingya.casual_interactions |consent_received.child_protection.past_interaction_rohingya.other |consent_received.child_protection.past_interaction_rohingya.none |consent_received.child_protection.past_interaction_rohingya.prefer_not_answer |consent_received.child_protection.past_interaction_rohingya_other |consent_received.child_protection.rohingya_comm_relation |consent_received.child_protection.opinion_rohingya |consent_received.child_protection.rohingya_feel |consent_received.child_protection.rohingya_feel.competition_services |consent_received.child_protection.rohingya_feel.cultural_difference |consent_received.child_protection.rohingya_feel.unfair_distribution |consent_received.child_protection.rohingya_feel.competition_resources |consent_received.child_protection.rohingya_feel.competition_jobs |consent_received.child_protection.rohingya_feel.threat_crime |consent_received.child_protection.rohingya_feel.other |consent_received.child_protection.rohingya_feel.dont_know |consent_received.child_protection.rohingya_feel.prefer_not_answer |consent_received.child_protection.rohingya_feel_other |consent_received.child_protection.community_groups |consent_received.child_protection.community_groups.health |consent_received.child_protection.community_groups.education |consent_received.child_protection.community_groups.safety_security |consent_received.child_protection.community_groups.respond_natural_disaster |consent_received.child_protection.community_groups.support_disabilities |consent_received.child_protection.community_groups.protect_children |consent_received.child_protection.community_groups.none |consent_received.child_protection.community_groups.other |consent_received.child_protection.community_groups_other |consent_received.child_protection.hh_safe |consent_received.gender_section.women_question |consent_received.gender_section.women_question_consent.menst_material_access |consent_received.gender_section.women_question_consent.menstrual_challenge |consent_received.gender_section.women_question_consent.menstrual_challenge.not_available_market |consent_received.gender_section.women_question_consent.menstrual_challenge.preferred_type_not_available |consent_received.gender_section.women_question_consent.menstrual_challenge.too_expensive |consent_received.gender_section.women_question_consent.menstrual_challenge.other_needs_prioritized |consent_received.gender_section.women_question_consent.menstrual_challenge.other |consent_received.gender_section.women_question_consent.menstrual_challenge.dntknow_prefer |consent_received.gender_section.women_question_consent.menstrual_challenge_other |consent_received.gender_section.women_question_consent.gvb_questions_female |consent_received.gender_section.women_question_consent.female_family_decision |consent_received.gender_section.women_question_consent.contraception_decision |consent_received.gender_section.women_question_consent.female_movement |consent_received.gender_section.women_question_consent.female_market |consent_received.gender_section.women_question_consent.female_health_center |consent_received.gender_section.women_question_consent.female_neighborhood |consent_received.gender_section.women_question_consent.female_religious_space |consent_received.gender_section.women_question_consent.control_money |consent_received.gender_section.women_question_consent.buy_vegetables_fruits |consent_received.gender_section.women_question_consent.buy_clothes |consent_received.gender_section.women_question_consent.buy_medicine |consent_received.gender_section.women_question_consent.buy_toiletries |consent_received.gender_section.women_question_consent.female_need_help |consent_received.gender_section.women_question_consent.female_shelter |consent_received.gender_section.women_question_consent.female_financial_support |consent_received.gender_section_1.male_question |consent_received.gender_section_1.male_question_consent.gbv_questions_male |consent_received.gender_section_1.male_question_consent.family_decision_male |consent_received.gender_section_1.male_question_consent.hh_chores_male |consent_received.gender_section_1.male_question_consent.married_women_work |consent_received.gender_section_1.male_question_consent.right_to_express |consent_received.gender_section_1.male_question_consent.wife_beaten |consent_received.gender_section_1.male_question_consent.son_daughter_school |consent_received.gender_section_1.male_question_consent.community_decision |consent_received.cwc.thing_to_know |consent_received.cwc.thing_to_know.finding_miss_people |consent_received.cwc.thing_to_know.security_situation |consent_received.cwc.thing_to_know.regiter_aid |consent_received.cwc.thing_to_know.get_water |consent_received.cwc.thing_to_know.get_food |consent_received.cwc.thing_to_know.get_shelter |consent_received.cwc.thing_to_know.nutrition_information |consent_received.cwc.thing_to_know.food_prices |consent_received.cwc.thing_to_know.crop_livestock_prices |consent_received.cwc.thing_to_know.get_fuel |consent_received.cwc.thing_to_know.weather_natural_hazards |consent_received.cwc.thing_to_know.get_health_care |consent_received.cwc.thing_to_know.get_help |consent_received.cwc.thing_to_know.prevent_attack |consent_received.cwc.thing_to_know.replace_personal_documentation |consent_received.cwc.thing_to_know.get_access_education |consent_received.cwc.thing_to_know.find_work |consent_received.cwc.thing_to_know.get_transport |consent_received.cwc.thing_to_know.get_financial_support |consent_received.cwc.thing_to_know.about_rohingya |consent_received.cwc.thing_to_know.info_aid_agencies |consent_received.cwc.thing_to_know.aid_complain |consent_received.cwc.thing_to_know.bad_behaviour_aidworker |consent_received.cwc.thing_to_know.expected_aidworker_behaviour |consent_received.cwc.thing_to_know.other |consent_received.cwc.thing_to_know.none |consent_received.cwc.thing_to_know.dntknow_no_answer |consent_received.cwc.thing_to_know_other |consent_received.cwc.information_sources |consent_received.cwc.information_sources.tv |consent_received.cwc.information_sources.face_to_face |consent_received.cwc.information_sources.newspaper |consent_received.cwc.information_sources.radio |consent_received.cwc.information_sources.internet |consent_received.cwc.information_sources.facebook |consent_received.cwc.information_sources.whatsapp |consent_received.cwc.information_sources.sms |consent_received.cwc.information_sources.call |consent_received.cwc.information_sources.loudspeaker |consent_received.cwc.information_sources.community_leaders |consent_received.cwc.information_sources.religious_leaders |consent_received.cwc.information_sources.govt_official |consent_received.cwc.information_sources.police_army |consent_received.cwc.information_sources.aid_worker |consent_received.cwc.information_sources.community_meetings |consent_received.cwc.information_sources.other |consent_received.cwc.information_sources.dntknow_prefer |consent_received.cwc.information_sources_other |consent_received.cwc.accurate_information |consent_received.cwc.accurate_information.tv |consent_received.cwc.accurate_information.face_to_face |consent_received.cwc.accurate_information.newspaper |consent_received.cwc.accurate_information.radio |consent_received.cwc.accurate_information.internet |consent_received.cwc.accurate_information.facebook |consent_received.cwc.accurate_information.whatsapp |consent_received.cwc.accurate_information.sms |consent_received.cwc.accurate_information.call |consent_received.cwc.accurate_information.loudspeaker |consent_received.cwc.accurate_information.community_leaders |consent_received.cwc.accurate_information.religious_leaders |consent_received.cwc.accurate_information.govt_official |consent_received.cwc.accurate_information.police_army |consent_received.cwc.accurate_information.aid_worker |consent_received.cwc.accurate_information.community_meetings |consent_received.cwc.accurate_information.other |consent_received.cwc.accurate_information.dntknow_prefer |consent_received.cwc.accurate_information_other |consent_received.cwc.provide_feedback |consent_received.cwc.provide_feedback.speak_service_provider |consent_received.cwc.provide_feedback.speak_community_leader |consent_received.cwc.provide_feedback.comm_meetings |consent_received.cwc.provide_feedback.helpline |consent_received.cwc.provide_feedback.complaint_form |consent_received.cwc.provide_feedback.suggestion_box |consent_received.cwc.provide_feedback.social_media |consent_received.cwc.provide_feedback.send_sms |consent_received.cwc.provide_feedback.send_email |consent_received.cwc.provide_feedback.send_letter |consent_received.cwc.provide_feedback.other |consent_received.cwc.provide_feedback.dont_know |consent_received.cwc.provide_feedback_other |consent_received.cwc.warning_message |consent_received.cwc.receive_early_warning |consent_received.cwc.receive_early_warning.cyclone_preparedness |consent_received.cwc.receive_early_warning.mosque_loudspeaker |consent_received.cwc.receive_early_warning.signal_flag |consent_received.cwc.receive_early_warning.radio |consent_received.cwc.receive_early_warning.television |consent_received.cwc.receive_early_warning.newspaper |consent_received.cwc.receive_early_warning.internet |consent_received.cwc.receive_early_warning.word_of_mouth |consent_received.cwc.receive_early_warning.other |consent_received.cwc.receive_early_warning.dont_know |consent_received.cwc.receive_early_warning.loudspeaker |consent_received.cwc.receive_early_warning_other |consent_received.cwc.receive_message_future |consent_received.cwc.receive_message_future.cyclone_preparedness |consent_received.cwc.receive_message_future.mosque_loudspeaker |consent_received.cwc.receive_message_future.signal_flag |consent_received.cwc.receive_message_future.radio |consent_received.cwc.receive_message_future.television |consent_received.cwc.receive_message_future.newspaper |consent_received.cwc.receive_message_future.internet |consent_received.cwc.receive_message_future.word_of_mouth |consent_received.cwc.receive_message_future.other |consent_received.cwc.receive_message_future.dont_know |consent_received.cwc.receive_message_future.loudspeaker |consent_received.cwc.receive_message_future_other |end_survey |end_note |gps_reading |X_gps_reading_latitude |X_gps_reading_longitude |X_gps_reading_altitude |X_gps_reading_precision |meta.instanceID |X_id |X_uuid |X_submission_time |X_index |X_parent_table_name |X_parent_index |X_tags |X_notes |X  |X.1 |X.2 |X.3 |X.4 |
#> |:---------|:---|:-------------|:-----------|:------------|:--------------|:-------------|:-------------|:----------|:----------------|:--------------|:-----------------------------------------------|:--------------------------------------------------|:----------------------------------------|:------------------------------------------|:----------------------------------------|:-----------------------------------------------------------|:------------------------------------------------------------|:----------------------------------------------------------|:------------------------------------------------------|:-------------------------------------------------------|:-------------------------------------------------------|:--------------------------------------------------------|:----------------------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------|:---------------------------------------|:---------------------------------------------|:-------------------------------------------|:-------------------------------------------------|:----------------------------------|:--------------------------------------|:----------------------------------------------|:------------------------------------------------------|:--------------------------------------------------------|:-----------------------------------------------------------------|:--------------------------------------------------------|:---------------------------------------------------------|:-------------------------------------------------------------|:-------------------------------------------------------------|:--------------------------------------------------------|:----------------------------------------------------|:----------------------------------------------------|:---------------------------------------|:-------------------------------------------|:-------------------------------------|:------------------------------------------|:--------------------------------------------|:-----------------------------------------------------|:--------------------------------------------------------|:----------------------------------------------------|:----------------------------------------------------------|:--------------------------------------------------------------|:---------------------------------------------------------------|:--------------------------------------------------|:--------------------------------------------------|:-----------------------------------|:-----------------------------------|:-----------------------------------------|:------------------------------------|:---------------------------------------------|:-------------------------------------------------------------|:------------------------------------------------------------|:--------------------------------------------------------------|:----------------------------------------------------------------|:-------------------------------------------------------|:----------------------------------------------------------------------|:---------------------------------------------------------|:-----------------------------------------------------------|:------------------------------------------------------------|:--------------------------------------------------------------|:---------------------------------------------------------|:-------------------------------------------------------|:---------------------------------------------------|:---------------------------------------------------|:------------------------------------|:--------------------------------------------------|:---------------------------------------------------|:-----------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------------|:--------------------------------------------------|:-----------------------------------------------------|:-----------------------------------------------------|:------------------------------------------|:---------------------------------------------------|:-------------------------------------------------|:------------------------------------------|:-----------------------------------|:------------------------------------|:-----------------------------------|:---------------------------------------------|:-------------------------------------------------|:-------------------------------------------------------|:-------------------------------------------------|:---------------------------------------------------------|:----------------------------------------------------|:--------------------------------------------------|:---------------------------------------------------|:---------------------------------------------------|:---------------------------------------------|:----------------------------------------------------|:--------------------------------------------------|:----------------------------------------------------|:----------------------------------------------------|:-------------------------------------------------------|:--------------------------------------------------|:-------------------------------------------------|:---------------------------------------------------|:---------------------------------------------------|:----------------------------------------------|:-----------------------------------------------------|:-----------------------------------------------------|:---------------------------------------------------|:---------------------------------------------------|:----------------------------------------------------|:----------------------------------------------------|:----------------------------------------|:---------------------------------------------|:--------------------------------------------------|:------------------------------------------------|:----------------------------------------------|:-------------------------------------------|:------------------------------------------------------|:----------------------------------------------------------|:-------------------------------------------------------|:-----------------------------------------------------|:---------------------------------------------------------|:---------------------------------------------------|:--------------------------------------------------------|:------------------------------------------------------------|:--------------------------------------------------------|:----------------------------------------------------------|:-------------------------------------------------|:----------------------------------------------------|:------------------------------------------------|:-------------------------------------------------|:------------------------------------------------------------|:----------------------------------------------------|:-------------------------------------------------|:-----------------------------------------|:-----------------------------------------------|:-------------------------------------------------|:-------------------------------------------------------|:--------------------------------------------|:----------------------------------------|:-----------------------------------------|:-------------------------------------|:-----------------------------|:----------------------------------|:----------------------------|:------------------------------|:-------------------------------|:---------------------------------|:------------------------------------------|:-------------------------------------------------------|:--------------------------------------------|:-------------------------------------------------|:---------------------------------------------------|:--------------------------------------------------|:--------------------------------------------|:---------------------------------------------|:-------------------------------------------|:----------------------------------------------|:----------------------------------------|:---------------------------------------------|:------------------------------------------------|:-----------------------------------------|:-------------------------------------|:------------------------------------|:----------------------------------------|:---------------------------------------|:-------------------------------------|:------------------------------------------------|:--------------------------------------------|:-------------------------------------------------|:-----------------------------------------------|:-----------------------------------------------------|:----------------------------------------------|:------------------------------------------|:-----------------------------------------------------------|:-------------------------------------------------------|:---------------------------------------------------|:------------------------------------------------------|:---------------------------------------------------------|:---------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------|:------------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------------------------------|:------------------------------------------------------------|:--------------------------------------------------|:--------------------------------------------------|:-----------------------------------------------|:----------------------------------------------------------------|:----------------------------------------------------------|:----------------------------------------------------------------------|:---------------------------------------------------------------|:------------------------------------------------|:------------------------------------------------|:-----------------------------------------------|:------------------------------------------------|:---------------------------------------------|:-------------------------------------------------|:------------------------------------------|:-----------------------------------------|:-----------------------------------------------|:----------------------------------------------|:------------------------------------------------|:---------------------------------------------|:--------------------------------------------|:-----------------------------------------|:---------------------------------------------|:----------------------------------------------|:--------------------------------------------------|:--------------------------------------------|:-----------------------------------------|:------------------------------------------|:------------------------------------------|:---------------------------------------------------|:----------------------------------------------------|:----------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------------|:-----------------------------------------------|:-------------------------------------|:----------------------------------------------|:----------------------------------------------------------------------|:------------------------------------------------------------------|:--------------------------------------------------------------------|:-------------------------------------------------------------------|:-----------------------------------------------------------------------------|:--------------------------------------------------------------------|:--------------------------------------------------------------|:--------------------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------------------------|:------------------------------------------------------------------|:----------------------------------------------------|:----------------------------------------------------|:-------------------------------------------|:----------------------------------------------|:-----------------------------------------------------------------------|:---------------------------------------------------------------|:---------------------------------------------------------------------|:----------------------------------------------------------------------------|:----------------------------------------------------|:----------------------------------------------------|:------------------------------------------|:---------------------------------------|:--------------------------------------|:----------------------------------------------|:------------------------------------------|:------------------------------------------------|:--------------------------------------------------------|:--------------------------------------------------------------|:----------------------------------------------------------------|:-------------------------------------------------------------------|:--------------------------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------------|:------------------------------------------------------------------|:---------------------------------------------------------------|:----------------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------|:------------------------------------------|:--------------------------------------------------------------|:-------------------------------------------------------------------------|:-----------------------------------------------------------------|:---------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------|:-----------------------------------------------------------------------|:--------------------------------------------------------------|:------------------------------------------------------------------|:------------------------------------------------------------------------|:------------------------------------------------|:----------------------------------------------------|:------------------------------------------------|:------------------------------------------------|:-------------------------------------------|:---------------------------------------------------------------|:--------------------------------------------------------------------------|:------------------------------------------------------------------|:----------------------------------------------------------------|:--------------------------------------------------------------------------|:---------------------------------------------------------------------|:------------------------------------------------------------------------|:---------------------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------------------------------|:-------------------------------------------------|:-----------------------------------------------------|:-------------------------------------------------|:-------------------------------------------------|:--------------------------------------------|:----------------------------------------------------------------|:---------------------------------------------------------------------------|:-------------------------------------------------------------------|:-----------------------------------------------------------------|:---------------------------------------------------------------------------|:----------------------------------------------------------------------|:-------------------------------------------------------------------------|:----------------------------------------------------------------|:--------------------------------------------------------------------|:--------------------------------------------------------------------------|:--------------------------------------------------|:------------------------------------------------------|:--------------------------------------------------|:--------------------------------------------------|:---------------------------------------------|:-----------------------------------------------------------------|:----------------------------------------------------------------------------|:--------------------------------------------------------------------|:------------------------------------------------------------------|:----------------------------------------------------------------------------|:-----------------------------------------------------------------------|:--------------------------------------------------------------------------|:-----------------------------------------------------------------|:---------------------------------------------------------------------|:---------------------------------------------------------------------------|:---------------------------------------------------|:-------------------------------------------------------|:---------------------------------------------------|:---------------------------------------|:------------------------------------------|:-------------------------------------------|:---------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------|:-----------------------------------------------------|:---------------------------------------------|:--------------------------------------------|:-------------------------------------------------|:---------------------------------------------|:-----------------------------------------------|:------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------------------|:-------------------------------------------------------|:---------------------------------------------------------|:------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------|:-------------------------------------------------------|:---------------------------------------------------------------|:------------------------------------------------------------------|:----------------------------------------------------------|:------------------------------------------------------------|:------------------------------------------------|:------------------------------------------------|:-------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------|:--------------------------------------------------------|:----------------------------------------------------------|:-------------------------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------------|:--------------------------------------------------------|:----------------------------------------------------------------|:-------------------------------------------------------------------|:-----------------------------------------------------------|:-------------------------------------------------------------|:-------------------------------------------------|:-------------------------------------------------|:------------------------------------------------|:-------------------------------------------------------------------------|:---------------------------------------------------------------------|:-------------------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------------------------|:---------------------------------------------------------|:-----------------------------------------------------------------|:---------------------------------------------------------------|:---------------------------------------------------------------|:----------------------------------------------------------------|:-----------------------------------------------------|:---------------------------------------------------|:-----------------------------------------------------------|:-------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:-------------------------------------------------------------------------------|:-------------------------------------------------------------------------------|:-----------------------------------------------------------------|:----------------------------------------------------------------|:-----------------------------------------------------------------------------|:-----------------------------------------------------------------|:--------------------------------------------------------|:--------------------------------------------------|:-----------------------------------------------|:--------------------------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------------------------|:---------------------------------------------------------------------|:----------------------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------------|:---------------------------------------------------------|:-----------------------------------------------------------------|:-----------------------------------------------------|:--------------------------------------------------|:---------------------------------------------------------|:------------------------------------------------------------|:------------------------------------------------------------------|:---------------------------------------------------------------------------|:-----------------------------------------------------------------------|:-------------------------------------------------------------------|:-------------------------------------------------------|:--------------------------------------------------------|:--------------------------------------------------------|:-----------------------------------------|:----------------------------------------------|:----------------------------------------------------------------------------|:--------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:---------------------------------------------------------------------------|:-----------------------------------------------------------------------------|:-----------------------------------------------------------------------------|:----------------------------------------------------------------------|:--------------------------------------------------------------------|:---------------------------------------------------------------------------|:--------------------------------------------------------------------------|:-----------------------------------------------------------------------------|:--------------------------------------------------------------------|:----------------------------------------------------------------------------|:------------------------------------------------------------------|:-------------------------------------------------------------------|:---------------------------------------------------------------------|:-----------------------------------------------------------------------|:---------------------------------------------------------------------|:-------------------------------------------------------------------------------|:-----------------------------------------------|:--------------------------------------------------------------------------|:----------------------------------------------------------------------------|:----------------------------------------------------------------------|:--------------------------------------------------------------------------|:------------------------------------------------------------------------|:-------------------------------------------------------------------|:---------------------------------------------------------------------------|:--------------------------------------------------------------------------|:----------------------------------|:------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------|:--------------------------------------------|:-------------------------------------------|:----------------------------------------------|:--------------------------------------------------------|:----------------------------------------------|:--------------------------------------------------------|:-------------------------------------------|:----------------------------------------------------------|:--------------------------------------------------|:-------------------------------------------|:-------------------------------------------------|:-----------------------------------------------------------------|:-------------------------------------------------------|:--------------------------------------------|:------------------------------------------------|:--------------------------------------------------------|:-------------------------------------------------|:----------------------------------------------------|:-----------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------|:----------------------------------------|:---------------------------------------|:----------------------------------------------------|:----------------------------------------|:----------------------------------------|:-------------------------------------------|:-----------------------------------------------------|:--------------------------------------------------|:----------------------------------------------|:-------------------------------------------------|:-------------------------------------------------|:-------------------------------------------------|:--------------------------------------------|:---------------------------------------------|:----------------------------------------------------|:----------------------------------------------------------|:----------------------------------------------------------|:------------------------------------------------------|:----------------------------------------------------|:---------------------------------------------------|:-----------------------------------------------------------|:----------------------------------------------|:-------------------------------------------------------|:----------------------------------------------|:-----------------------------------------|:--------------------------------------------|:------------------------------------------------------|:---------------------------------------------------|:-----------------------------------------------|:--------------------------------------------------|:--------------------------------------------------|:--------------------------------------------------|:---------------------------------------------|:----------------------------------------------|:-----------------------------------------------------|:-----------------------------------------------------------|:-----------------------------------------------------------|:-------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------------|:-----------------------------------------------|:--------------------------------------------------------|:-----------------------------------------------|:-------------------------------------|:------------------------------------------------------------|:------------------------------------------------------------|:---------------------------------------------------|:----------------------------------------------|:----------------------------------------------------|:----------------------------------------------------|:--------------------------------------------------|:----------------------------------------------|:------------------------------------------------|:-------------------------------------------------|:-------------------------------------------|:-----------------------------------------------|:-------------------------------------------|:------------------------------------|:------------------------------------------|:---------------------------------------------------------------|:-------------------------------------------------------------|:------------------------------------------------------|:------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------|:---------------------------------------------------|:--------------------------------------------------------|:------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------|:------------------------------------------------|:-------------------------------------------|:----------------------------------------------------------------|:--------------------------------------------------------------|:-------------------------------------------------------|:-------------------------------------------------|:------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------|:---------------------------------------------------------|:-------------------------------------------------|:-----------------------------------------------------|:-------------------------------------------------------|:-------------------------------------------------|:----------|:--------|:-----------|:----------------------|:-----------------------|:----------------------|:-----------------------|:---------------|:----|:------|:-----------------|:-------|:-------------------|:--------------|:------|:-------|:--|:---|:---|:---|:---|
#> |variables |X.5 |instance_name |survey_date |survey_start |enumerator_org |enumerator_id |upazilla_name |union_name |informed_consent |survey_consent |consent_received.respondent_info.respondent_age |consent_received.respondent_info.respondent_gender |consent_received.respondent_info.hh_head |consent_received.respondent_info.hh_gender |consent_received.respondent_info.hh_size |consent_received.individual_information.repeat_introduction |consent_received.individual_information.inividual_info_count |consent_received.individual_information.adult_female_count |consent_received.individual_information.boy_6_11_count |consent_received.individual_information.girl_6_11_count |consent_received.individual_information.boy_12_18_count |consent_received.individual_information.girl_12_18_count |consent_received.individual_information.individual_edu_aid_count |consent_received.individual_information.hh_head_number_count |consent_received.individual_information.hhead_warning |consent_received.individual_information.individual_group_end |consent_received.wash.primary_watsource |consent_received.wash.primary_watsource_other |consent_received.wash.improved_water_access |consent_received.wash.improved_water_access_other |consent_received.wash.enough_water |consent_received.wash.hh_water_problem |consent_received.wash.water_collection_problem |consent_received.wash.water_collection_problem.too_far |consent_received.wash.water_collection_problem.too_steep |consent_received.wash.water_collection_problem.available_sometime |consent_received.wash.water_collection_problem.dangerous |consent_received.wash.water_collection_problem.tastes_bad |consent_received.wash.water_collection_problem.water_badsmell |consent_received.wash.water_collection_problem.water_notclean |consent_received.wash.water_collection_problem.dont_know |consent_received.wash.water_collection_problem.other |consent_received.wash.water_collection_problem_other |consent_received.wash.water_source_time |consent_received.wash.water_collection_time |consent_received.wash.water_treatment |consent_received.wash.water_treatment_time |consent_received.wash.water_treatment_method |consent_received.wash.water_treatment_method.aquatabs |consent_received.wash.water_treatment_method.pur_sachets |consent_received.wash.water_treatment_method.boiling |consent_received.wash.water_treatment_method.cloth_filters |consent_received.wash.water_treatment_method.household_filters |consent_received.wash.water_treatment_method.solar_disinfection |consent_received.wash.water_treatment_method.other |consent_received.wash.water_treatment_method_other |consent_received.wash.soap_handwash |consent_received.wash.hh_defecation |consent_received.wash.hh_defecation_other |consent_received.wash.latrine_access |consent_received.wash.latrine_access_problems |consent_received.wash.latrine_access_problems.latrine_too_far |consent_received.wash.latrine_access_problems.too_many_using |consent_received.wash.latrine_access_problems.latrine_notclean |consent_received.wash.latrine_access_problems.insufficient_water |consent_received.wash.latrine_access_problems.bad_smell |consent_received.wash.latrine_access_problems.open_defecation_near_lat |consent_received.wash.latrine_access_problems.not_private |consent_received.wash.latrine_access_problems.no_separation |consent_received.wash.latrine_access_problems.route_not_safe |consent_received.wash.latrine_access_problems.latrine_not_safe |consent_received.wash.latrine_access_problems.no_lighting |consent_received.wash.latrine_access_problems.dont_know |consent_received.wash.latrine_access_problems.other |consent_received.wash.latrine_access_problems_other |consent_received.wash.handwash_times |consent_received.wash.handwash_times.before_eating |consent_received.wash.handwash_times.before_cooking |consent_received.wash.handwash_times.after_defecation |consent_received.wash.handwash_times.before_breastfeeding |consent_received.wash.handwash_times.before_feeding_chid |consent_received.wash.handwash_times.after_child_bottom |consent_received.wash.handwash_times.before_prayer |consent_received.wash.handwash_times.hands_look_dirty |consent_received.wash.handwash_times.hands_feel_dirty |consent_received.wash.handwash_times.other |consent_received.wash.handwash_times.dntknow_prefer |consent_received.wash.handwash_times.after_eating |consent_received.wash.handwash_times_other |consent_received.wash.visible_trash |consent_received.wash.visible_faeces |consent_received.wash.visible_waste |consent_received.shelter_nfi.hh_roof_material |consent_received.shelter_nfi.hh_roof_material.tin |consent_received.shelter_nfi.hh_roof_material.tarpaulin |consent_received.shelter_nfi.hh_roof_material.hay |consent_received.shelter_nfi.hh_roof_material.brick_cemen |consent_received.shelter_nfi.hh_roof_material.bamboo |consent_received.shelter_nfi.hh_roof_material.wood |consent_received.shelter_nfi.hh_roof_material.other |consent_received.shelter_nfi.hh_roof_material_other |consent_received.shelter_nfi.hh_wall_material |consent_received.shelter_nfi.hh_wall_material.bricks |consent_received.shelter_nfi.hh_wall_material.clay |consent_received.shelter_nfi.hh_wall_material.bamboo |consent_received.shelter_nfi.hh_wall_material.cement |consent_received.shelter_nfi.hh_wall_material.tarpaulin |consent_received.shelter_nfi.hh_wall_material.wood |consent_received.shelter_nfi.hh_wall_material.tin |consent_received.shelter_nfi.hh_wall_material.other |consent_received.shelter_nfi.hh_wall_material_other |consent_received.shelter_nfi.hh_floor_material |consent_received.shelter_nfi.hh_floor_material.bricks |consent_received.shelter_nfi.hh_floor_material.cement |consent_received.shelter_nfi.hh_floor_material.wood |consent_received.shelter_nfi.hh_floor_material.dirt |consent_received.shelter_nfi.hh_floor_material.other |consent_received.shelter_nfi.hh_floor_material_other |consent_received.shelter_nfi.solar_light |consent_received.shelter_nfi.electricity_grid |consent_received.shelter_nfi.hh_electricity_access |consent_received.shelter_nfi.hh_cyclone_training |consent_received.shelter_nfi.hh_flood_training |consent_received.shelter_nfi.non_food_items |consent_received.shelter_nfi.non_food_items.solar_lamp |consent_received.shelter_nfi.non_food_items.portable_torch |consent_received.shelter_nfi.non_food_items.kitchen_set |consent_received.shelter_nfi.non_food_items.floor_mat |consent_received.shelter_nfi.non_food_items.cooking_stove |consent_received.shelter_nfi.non_food_items.blanket |consent_received.shelter_nfi.non_food_items.mosquito_net |consent_received.shelter_nfi.non_food_items.children_clothes |consent_received.shelter_nfi.non_food_items.male_clothes |consent_received.shelter_nfi.non_food_items.female_clothes |consent_received.shelter_nfi.non_food_items.radio |consent_received.shelter_nfi.non_food_items.umbrella |consent_received.shelter_nfi.non_food_items.fuel |consent_received.shelter_nfi.non_food_items.other |consent_received.shelter_nfi.non_food_items.latrine_bathroom |consent_received.shelter_nfi.non_food_items.tubewell |consent_received.shelter_nfi.non_food_items_other |consent_received.shelter_nfi.cooking_fuel |consent_received.shelter_nfi.cooking_fuel_other |consent_received.shelter_nfi.house_land_ownership |consent_received.shelter_nfi.house_land_ownership_other |consent_received.shelter_nfi.land_house_deed |consent_received.shelter_nfi.rent_hosted |consent_received.shelter_nfi.hh_agreement |consent_received.shelter_nfi.eviction |consent_received.ppi.hh_rooms |consent_received.ppi.hh_television |consent_received.ppi.hh_fans |consent_received.ppi.hh_phones |consent_received.ppi.hh_vehicle |consent_received.ppi.hh_agri_land |consent_received.food_security.food_crisis |consent_received.food_security.less_preferred_expensive |consent_received.food_security.borrowed_food |consent_received.food_security.limit_portion_size |consent_received.food_security.restrict_consumption |consent_received.food_security.reduce_meal_numbers |consent_received.food_security.eat_elsewhere |consent_received.food_security.women_eat_less |consent_received.food_security.men_eat_less |consent_received.food_security.nofood_wholeday |consent_received.food_security.food_list |consent_received.food_security.cereals_tubers |consent_received.food_security.pulses_nuts_seeds |consent_received.food_security.vegetables |consent_received.food_security.fruits |consent_received.food_security.dairy |consent_received.food_security.meat_fish |consent_received.food_security.oil_fats |consent_received.food_security.sweets |consent_received.food_security.spices_condiments |consent_received.food_security.market_access |consent_received.food_security.market_travel_time |consent_received.food_security.main_source_food |consent_received.food_security.main_source_food_other |consent_received.food_security.food_hh_sustain |consent_received.food_security.main_income |consent_received.food_security.main_income.non_agricultural |consent_received.food_security.main_income.agricultural |consent_received.food_security.main_income.domestic |consent_received.food_security.main_income.petty_trade |consent_received.food_security.main_income.small_business |consent_received.food_security.main_income.large_business |consent_received.food_security.main_income.skilled_labour |consent_received.food_security.main_income.fishing |consent_received.food_security.main_income.remittances |consent_received.food_security.main_income.handicrafts |consent_received.food_security.main_income.agricultural_production_sale |consent_received.food_security.main_income.livestock_rearing |consent_received.food_security.main_income.savings |consent_received.food_security.main_income.begging |consent_received.food_security.main_income.food |consent_received.food_security.main_income.other_cash_assistance |consent_received.food_security.main_income.sale_assistance |consent_received.food_security.main_income.assistance_relative_friends |consent_received.food_security.main_income.gather_sell_firewood |consent_received.food_security.main_income.zakat |consent_received.food_security.main_income.other |consent_received.food_security.main_income.none |consent_received.food_security.main_income_other |consent_received.food_security.hh_econ_status |consent_received.food_security.hh_living_standard |consent_received.food_security.hh_spending |consent_received.food_security.spend_food |consent_received.food_security.spend_medication |consent_received.food_security.spend_education |consent_received.food_security.spend_fix_shelter |consent_received.food_security.spend_clothing |consent_received.food_security.spend_hygiene |consent_received.food_security.spend_fuel |consent_received.food_security.spend_hh_items |consent_received.food_security.spend_transport |consent_received.food_security.spend_communication |consent_received.food_security.spend_tobacco |consent_received.food_security.spend_rent |consent_received.food_security.spend_debts |consent_received.food_security.spend_other |consent_received.food_security.work_outside_country |consent_received.food_security.study_outside_country |consent_received.food_security.marry_outside_country |consent_received.food_security.return_outside_country |consent_received.food_security.forced_work_outside_country |consent_received.food_security.never_heard_back |consent_received.health.health_access |consent_received.health.health_access_barriers |consent_received.health.health_access_barriers.health_facility_too_far |consent_received.health.health_access_barriers.infrequent_services |consent_received.health.health_access_barriers.treatment_unavailable |consent_received.health.health_access_barriers.overcrowded_services |consent_received.health.health_access_barriers.insufficient_poorquality_staff |consent_received.health.health_access_barriers.not_adequate_material |consent_received.health.health_access_barriers.dont_know_to_go |consent_received.health.health_access_barriers.safety_concerns |consent_received.health.health_access_barriers.too_expensive |consent_received.health.health_access_barriers.dont_trust_doctors |consent_received.health.health_access_barriers.face_discrimination |consent_received.health.health_access_barriers.other |consent_received.health.health_access_barriers_other |consent_received.health.new_health_facility |consent_received.health.no_access_new_facility |consent_received.health.no_access_new_facility.dont_know_about_services |consent_received.health.no_access_new_facility.services_too_far |consent_received.health.no_access_new_facility.servicesare_not_for_hc |consent_received.health.no_access_new_facility.prefer_services_already_exist |consent_received.health.no_access_new_facility.other |consent_received.health.no_access_new_facility_other |consent_received.health.comm_health_worker |consent_received.health.lactating_women |consent_received.health.pregnant_women |consent_received.health.clinic_visit_pregnancy |consent_received.health.hh_marriage_person |consent_received.health.women_breastfeed_problem |consent_received.health.women_breastfeed_problem.doctors |consent_received.health.women_breastfeed_problem.midwife_nurse |consent_received.health.women_breastfeed_problem.older_relatives |consent_received.health.women_breastfeed_problem.traditional_healer |consent_received.health.women_breastfeed_problem.other_mothers |consent_received.health.women_breastfeed_problem.friends |consent_received.health.women_breastfeed_problem.others |consent_received.health.women_breastfeed_problem.wouldnt_seek_help |consent_received.health.women_breastfeed_problem.not_applicable |consent_received.health.women_breastfeed_problem.dont_know |consent_received.health.women_breastfeed_problem_other |consent_received.education.boy_prim_edu_barrier |consent_received.education.boy_edu_barrier |consent_received.education.boy_edu_barrier.facillities_too_far |consent_received.education.boy_edu_barrier.safety_concerns_way_facilities |consent_received.education.boy_edu_barrier.services_too_expensive |consent_received.education.boy_edu_barrier.services_too_crowded |consent_received.education.boy_edu_barrier.insufficient_poorquality_staff |consent_received.education.boy_edu_barrier.school_not_adequate_infra |consent_received.education.boy_edu_barrier.school_not_adequate_material |consent_received.education.boy_edu_barrier.face_discrimination |consent_received.education.boy_edu_barrier.children_support_family |consent_received.education.boy_edu_barrier.parents_think_not_appropriate |consent_received.education.boy_edu_barrier.other |consent_received.education.boy_edu_barrier.dont_know |consent_received.education.boy_edu_barrier_other |consent_received.education.girl_prim_edu_barrier |consent_received.education.girl_edu_barrier |consent_received.education.girl_edu_barrier.facillities_too_far |consent_received.education.girl_edu_barrier.safety_concerns_way_facilities |consent_received.education.girl_edu_barrier.services_too_expensive |consent_received.education.girl_edu_barrier.services_too_crowded |consent_received.education.girl_edu_barrier.insufficient_poorquality_staff |consent_received.education.girl_edu_barrier.school_not_adequate_infra |consent_received.education.girl_edu_barrier.school_not_adequate_material |consent_received.education.girl_edu_barrier.face_discrimination |consent_received.education.girl_edu_barrier.children_support_family |consent_received.education.girl_edu_barrier.parents_think_not_appropriate |consent_received.education.girl_edu_barrier.other |consent_received.education.girl_edu_barrier.dont_know |consent_received.education.girl_edu_barrier_other |consent_received.education.boy_second_edu_barrier |consent_received.education.boy_edu_barrier_1 |consent_received.education.boy_edu_barrier_1.facillities_too_far |consent_received.education.boy_edu_barrier_1.safety_concerns_way_facilities |consent_received.education.boy_edu_barrier_1.services_too_expensive |consent_received.education.boy_edu_barrier_1.services_too_crowded |consent_received.education.boy_edu_barrier_1.insufficient_poorquality_staff |consent_received.education.boy_edu_barrier_1.school_not_adequate_infra |consent_received.education.boy_edu_barrier_1.school_not_adequate_material |consent_received.education.boy_edu_barrier_1.face_discrimination |consent_received.education.boy_edu_barrier_1.children_support_family |consent_received.education.boy_edu_barrier_1.parents_think_not_appropriate |consent_received.education.boy_edu_barrier_1.other |consent_received.education.boy_edu_barrier_1.dont_know |consent_received.education.boy_edu_barrier_1_other |consent_received.education.girl_second_edu_barrier |consent_received.education.girl_edu_barrier_1 |consent_received.education.girl_edu_barrier_1.facillities_too_far |consent_received.education.girl_edu_barrier_1.safety_concerns_way_facilities |consent_received.education.girl_edu_barrier_1.services_too_expensive |consent_received.education.girl_edu_barrier_1.services_too_crowded |consent_received.education.girl_edu_barrier_1.insufficient_poorquality_staff |consent_received.education.girl_edu_barrier_1.school_not_adequate_infra |consent_received.education.girl_edu_barrier_1.school_not_adequate_material |consent_received.education.girl_edu_barrier_1.face_discrimination |consent_received.education.girl_edu_barrier_1.children_support_family |consent_received.education.girl_edu_barrier_1.parents_think_not_appropriate |consent_received.education.girl_edu_barrier_1.other |consent_received.education.girl_edu_barrier_1.dont_know |consent_received.education.girl_edu_barrier_1_other |consent_received.education.child_rights |consent_received.education.child_education |consent_received.education.edu_aid_material |consent_received.education.edu_aid_kind |consent_received.education.edu_aid_kind.health_hygiene_kit |consent_received.education.edu_aid_kind.winterization_kit |consent_received.education.edu_aid_kind.school_supply |consent_received.education.edu_aid_kind.other |consent_received.education.edu_aid_kind.none |consent_received.education.edu_aid_kind.dont_know |consent_received.education.edu_aid_kind_other |consent_received.child_protection.missing_child |consent_received.child_protection.boy_risk |consent_received.child_protection.boy_risk.violence_home |consent_received.child_protection.boy_risk.violence_community |consent_received.child_protection.boy_risk.child_labour |consent_received.child_protection.boy_risk.child_marriage |consent_received.child_protection.boy_risk.recruitment_armed_group |consent_received.child_protection.boy_risk.kidnapping |consent_received.child_protection.boy_risk.detention |consent_received.child_protection.boy_risk.sexual_abuse |consent_received.child_protection.boy_risk.psychological_trauma |consent_received.child_protection.boy_risk.no_registration_newborn |consent_received.child_protection.boy_risk.natural_hazards |consent_received.child_protection.boy_risk.dntknow_no_answer |consent_received.child_protection.boy_risk.other |consent_received.child_protection.boy_risk_other |consent_received.child_protection.girl_risk |consent_received.child_protection.girl_risk.violence_home |consent_received.child_protection.girl_risk.violence_community |consent_received.child_protection.girl_risk.child_labour |consent_received.child_protection.girl_risk.child_marriage |consent_received.child_protection.girl_risk.recruitment_armed_group |consent_received.child_protection.girl_risk.kidnapping |consent_received.child_protection.girl_risk.detention |consent_received.child_protection.girl_risk.sexual_abuse |consent_received.child_protection.girl_risk.psychological_trauma |consent_received.child_protection.girl_risk.no_registration_newborn |consent_received.child_protection.girl_risk.natural_hazards |consent_received.child_protection.girl_risk.dntknow_no_answer |consent_received.child_protection.girl_risk.other |consent_received.child_protection.girl_risk_other |consent_received.child_protection.child_distress |consent_received.child_protection.child_distress.withdrawn_family_friends |consent_received.child_protection.child_distress.aggressive_outbursts |consent_received.child_protection.child_distress.changes_appetite_eating_habits |consent_received.child_protection.child_distress.headaches |consent_received.child_protection.child_distress.recurrent_bedwetting |consent_received.child_protection.child_distress.sleep_disturbances |consent_received.child_protection.child_distress.upset_stomach_pain |consent_received.child_protection.child_distress.new_recurring_fear |consent_received.child_protection.child_distress.clinging |consent_received.child_protection.child_distress.excessive_crying |consent_received.child_protection.child_distress.behave_younger |consent_received.child_protection.child_distress.startle_easily |consent_received.child_protection.child_distress.substance_abuse |consent_received.child_protection.child_distress.none |consent_received.child_protection.rohingya_interact |consent_received.child_protection.past_interaction_rohingya |consent_received.child_protection.past_interaction_rohingya.social_interactions |consent_received.child_protection.past_interaction_rohingya.buying_goods_services |consent_received.child_protection.past_interaction_rohingya.selling_goods_services |consent_received.child_protection.past_interaction_rohingya.working_for_rohingya |consent_received.child_protection.past_interaction_rohingya.hiring_rohingya_work |consent_received.child_protection.past_interaction_rohingya.renting_to_rohingya |consent_received.child_protection.past_interaction_rohingya.casual_interactions |consent_received.child_protection.past_interaction_rohingya.other |consent_received.child_protection.past_interaction_rohingya.none |consent_received.child_protection.past_interaction_rohingya.prefer_not_answer |consent_received.child_protection.past_interaction_rohingya_other |consent_received.child_protection.rohingya_comm_relation |consent_received.child_protection.opinion_rohingya |consent_received.child_protection.rohingya_feel |consent_received.child_protection.rohingya_feel.competition_services |consent_received.child_protection.rohingya_feel.cultural_difference |consent_received.child_protection.rohingya_feel.unfair_distribution |consent_received.child_protection.rohingya_feel.competition_resources |consent_received.child_protection.rohingya_feel.competition_jobs |consent_received.child_protection.rohingya_feel.threat_crime |consent_received.child_protection.rohingya_feel.other |consent_received.child_protection.rohingya_feel.dont_know |consent_received.child_protection.rohingya_feel.prefer_not_answer |consent_received.child_protection.rohingya_feel_other |consent_received.child_protection.community_groups |consent_received.child_protection.community_groups.health |consent_received.child_protection.community_groups.education |consent_received.child_protection.community_groups.safety_security |consent_received.child_protection.community_groups.respond_natural_disaster |consent_received.child_protection.community_groups.support_disabilities |consent_received.child_protection.community_groups.protect_children |consent_received.child_protection.community_groups.none |consent_received.child_protection.community_groups.other |consent_received.child_protection.community_groups_other |consent_received.child_protection.hh_safe |consent_received.gender_section.women_question |consent_received.gender_section.women_question_consent.menst_material_access |consent_received.gender_section.women_question_consent.menstrual_challenge |consent_received.gender_section.women_question_consent.menstrual_challenge.not_available_market |consent_received.gender_section.women_question_consent.menstrual_challenge.preferred_type_not_available |consent_received.gender_section.women_question_consent.menstrual_challenge.too_expensive |consent_received.gender_section.women_question_consent.menstrual_challenge.other_needs_prioritized |consent_received.gender_section.women_question_consent.menstrual_challenge.other |consent_received.gender_section.women_question_consent.menstrual_challenge.dntknow_prefer |consent_received.gender_section.women_question_consent.menstrual_challenge_other |consent_received.gender_section.women_question_consent.gvb_questions_female |consent_received.gender_section.women_question_consent.female_family_decision |consent_received.gender_section.women_question_consent.contraception_decision |consent_received.gender_section.women_question_consent.female_movement |consent_received.gender_section.women_question_consent.female_market |consent_received.gender_section.women_question_consent.female_health_center |consent_received.gender_section.women_question_consent.female_neighborhood |consent_received.gender_section.women_question_consent.female_religious_space |consent_received.gender_section.women_question_consent.control_money |consent_received.gender_section.women_question_consent.buy_vegetables_fruits |consent_received.gender_section.women_question_consent.buy_clothes |consent_received.gender_section.women_question_consent.buy_medicine |consent_received.gender_section.women_question_consent.buy_toiletries |consent_received.gender_section.women_question_consent.female_need_help |consent_received.gender_section.women_question_consent.female_shelter |consent_received.gender_section.women_question_consent.female_financial_support |consent_received.gender_section_1.male_question |consent_received.gender_section_1.male_question_consent.gbv_questions_male |consent_received.gender_section_1.male_question_consent.family_decision_male |consent_received.gender_section_1.male_question_consent.hh_chores_male |consent_received.gender_section_1.male_question_consent.married_women_work |consent_received.gender_section_1.male_question_consent.right_to_express |consent_received.gender_section_1.male_question_consent.wife_beaten |consent_received.gender_section_1.male_question_consent.son_daughter_school |consent_received.gender_section_1.male_question_consent.community_decision |consent_received.cwc.thing_to_know |consent_received.cwc.thing_to_know.finding_miss_people |consent_received.cwc.thing_to_know.security_situation |consent_received.cwc.thing_to_know.regiter_aid |consent_received.cwc.thing_to_know.get_water |consent_received.cwc.thing_to_know.get_food |consent_received.cwc.thing_to_know.get_shelter |consent_received.cwc.thing_to_know.nutrition_information |consent_received.cwc.thing_to_know.food_prices |consent_received.cwc.thing_to_know.crop_livestock_prices |consent_received.cwc.thing_to_know.get_fuel |consent_received.cwc.thing_to_know.weather_natural_hazards |consent_received.cwc.thing_to_know.get_health_care |consent_received.cwc.thing_to_know.get_help |consent_received.cwc.thing_to_know.prevent_attack |consent_received.cwc.thing_to_know.replace_personal_documentation |consent_received.cwc.thing_to_know.get_access_education |consent_received.cwc.thing_to_know.find_work |consent_received.cwc.thing_to_know.get_transport |consent_received.cwc.thing_to_know.get_financial_support |consent_received.cwc.thing_to_know.about_rohingya |consent_received.cwc.thing_to_know.info_aid_agencies |consent_received.cwc.thing_to_know.aid_complain |consent_received.cwc.thing_to_know.bad_behaviour_aidworker |consent_received.cwc.thing_to_know.expected_aidworker_behaviour |consent_received.cwc.thing_to_know.other |consent_received.cwc.thing_to_know.none |consent_received.cwc.thing_to_know.dntknow_no_answer |consent_received.cwc.thing_to_know_other |consent_received.cwc.information_sources |consent_received.cwc.information_sources.tv |consent_received.cwc.information_sources.face_to_face |consent_received.cwc.information_sources.newspaper |consent_received.cwc.information_sources.radio |consent_received.cwc.information_sources.internet |consent_received.cwc.information_sources.facebook |consent_received.cwc.information_sources.whatsapp |consent_received.cwc.information_sources.sms |consent_received.cwc.information_sources.call |consent_received.cwc.information_sources.loudspeaker |consent_received.cwc.information_sources.community_leaders |consent_received.cwc.information_sources.religious_leaders |consent_received.cwc.information_sources.govt_official |consent_received.cwc.information_sources.police_army |consent_received.cwc.information_sources.aid_worker |consent_received.cwc.information_sources.community_meetings |consent_received.cwc.information_sources.other |consent_received.cwc.information_sources.dntknow_prefer |consent_received.cwc.information_sources_other |consent_received.cwc.accurate_information |consent_received.cwc.accurate_information.tv |consent_received.cwc.accurate_information.face_to_face |consent_received.cwc.accurate_information.newspaper |consent_received.cwc.accurate_information.radio |consent_received.cwc.accurate_information.internet |consent_received.cwc.accurate_information.facebook |consent_received.cwc.accurate_information.whatsapp |consent_received.cwc.accurate_information.sms |consent_received.cwc.accurate_information.call |consent_received.cwc.accurate_information.loudspeaker |consent_received.cwc.accurate_information.community_leaders |consent_received.cwc.accurate_information.religious_leaders |consent_received.cwc.accurate_information.govt_official |consent_received.cwc.accurate_information.police_army |consent_received.cwc.accurate_information.aid_worker |consent_received.cwc.accurate_information.community_meetings |consent_received.cwc.accurate_information.other |consent_received.cwc.accurate_information.dntknow_prefer |consent_received.cwc.accurate_information_other |consent_received.cwc.provide_feedback |consent_received.cwc.provide_feedback.speak_service_provider |consent_received.cwc.provide_feedback.speak_community_leader |consent_received.cwc.provide_feedback.comm_meetings |consent_received.cwc.provide_feedback.helpline |consent_received.cwc.provide_feedback.complaint_form |consent_received.cwc.provide_feedback.suggestion_box |consent_received.cwc.provide_feedback.social_media |consent_received.cwc.provide_feedback.send_sms |consent_received.cwc.provide_feedback.send_email |consent_received.cwc.provide_feedback.send_letter |consent_received.cwc.provide_feedback.other |consent_received.cwc.provide_feedback.dont_know |consent_received.cwc.provide_feedback_other |consent_received.cwc.warning_message |consent_received.cwc.receive_early_warning |consent_received.cwc.receive_early_warning.cyclone_preparedness |consent_received.cwc.receive_early_warning.mosque_loudspeaker |consent_received.cwc.receive_early_warning.signal_flag |consent_received.cwc.receive_early_warning.radio |consent_received.cwc.receive_early_warning.television |consent_received.cwc.receive_early_warning.newspaper |consent_received.cwc.receive_early_warning.internet |consent_received.cwc.receive_early_warning.word_of_mouth |consent_received.cwc.receive_early_warning.other |consent_received.cwc.receive_early_warning.dont_know |consent_received.cwc.receive_early_warning.loudspeaker |consent_received.cwc.receive_early_warning_other |consent_received.cwc.receive_message_future |consent_received.cwc.receive_message_future.cyclone_preparedness |consent_received.cwc.receive_message_future.mosque_loudspeaker |consent_received.cwc.receive_message_future.signal_flag |consent_received.cwc.receive_message_future.radio |consent_received.cwc.receive_message_future.television |consent_received.cwc.receive_message_future.newspaper |consent_received.cwc.receive_message_future.internet |consent_received.cwc.receive_message_future.word_of_mouth |consent_received.cwc.receive_message_future.other |consent_received.cwc.receive_message_future.dont_know |consent_received.cwc.receive_message_future.loudspeaker |consent_received.cwc.receive_message_future_other |end_survey |end_note |gps_reading |X_gps_reading_latitude |X_gps_reading_longitude |X_gps_reading_altitude |X_gps_reading_precision |meta.instanceID |X_id |X_uuid |X_submission_time |X_index |X_parent_table_name |X_parent_index |X_tags |X_notes |X  |X.1 |X.2 |X.3 |X.4 |
#> |nb        |498 |498           |18          |498          |2              |65            |2             |11         |0                |3              |43                                              |3                                                  |3                                        |3                                          |14                                       |0                                                           |14                                                           |6                                                          |4                                                      |4                                                       |5                                                       |4                                                        |9                                                                |3                                                            |0                                                     |0                                                            |8                                       |0                                             |4                                           |0                                                 |3                                  |3                                      |37                                             |2                                                      |2                                                        |2                                                                 |2                                                        |2                                                         |2                                                             |2                                                             |1                                                        |2                                                    |3                                                    |7                                       |7                                           |3                                     |4                                          |8                                            |2                                                     |2                                                        |1                                                    |2                                                          |2                                                              |2                                                               |1                                                  |0                                                  |4                                   |4                                   |0                                         |3                                    |77                                            |2                                                             |2                                                            |2                                                              |2                                                                |2                                                       |2                                                                      |2                                                         |2                                                           |2                                                            |2                                                              |2                                                         |1                                                       |1                                                   |0                                                   |187                                  |2                                                  |2                                                   |2                                                     |2                                                         |2                                                        |2                                                       |2                                                  |2                                                     |2                                                     |1                                          |2                                                   |2                                                 |0                                          |3                                   |4                                    |3                                   |36                                            |2                                                 |2                                                       |2                                                 |2                                                         |2                                                    |2                                                  |1                                                   |0                                                   |30                                            |2                                                    |2                                                  |2                                                    |2                                                    |2                                                       |2                                                  |2                                                 |1                                                   |0                                                   |11                                             |2                                                     |2                                                     |2                                                   |2                                                   |1                                                    |0                                                    |3                                        |3                                             |3                                                  |3                                                |3                                              |172                                         |2                                                      |2                                                          |2                                                       |2                                                     |2                                                         |2                                                   |2                                                        |2                                                            |2                                                        |2                                                          |2                                                 |2                                                    |2                                                |2                                                 |2                                                            |2                                                    |29                                                |5                                         |0                                               |4                                                 |0                                                       |4                                            |3                                        |3                                         |3                                     |4                             |3                                  |4                            |4                              |3                               |3                                 |0                                          |8                                                       |8                                            |8                                                 |8                                                   |7                                                  |7                                            |8                                             |8                                           |4                                              |0                                        |8                                             |8                                                |8                                         |8                                     |8                                    |8                                        |8                                       |8                                     |8                                                |3                                            |5                                                 |6                                               |0                                                     |6                                              |122                                        |2                                                           |2                                                       |2                                                   |2                                                      |2                                                         |2                                                         |2                                                         |2                                                  |2                                                      |2                                                      |2                                                                       |2                                                            |2                                                  |1                                                  |1                                               |2                                                                |1                                                          |2                                                                      |2                                                               |1                                                |1                                                |2                                               |0                                                |6                                             |6                                                 |0                                          |27                                        |42                                              |36                                             |21                                               |35                                            |24                                           |32                                        |23                                            |34                                             |27                                                 |26                                           |7                                         |27                                         |23                                         |4                                                   |4                                                    |4                                                    |4                                                     |4                                                          |4                                               |3                                     |42                                             |2                                                                      |2                                                                  |2                                                                    |2                                                                   |2                                                                             |2                                                                    |2                                                              |1                                                              |2                                                            |2                                                                 |2                                                                  |1                                                    |0                                                    |4                                           |20                                             |2                                                                       |2                                                               |2                                                                     |2                                                                            |1                                                    |0                                                    |4                                          |3                                       |2                                      |2                                              |3                                          |27                                               |2                                                        |2                                                              |2                                                                |2                                                                   |2                                                              |2                                                        |1                                                       |2                                                                  |2                                                               |2                                                          |0                                                      |3                                               |8                                          |2                                                              |2                                                                         |2                                                                 |1                                                               |1                                                                         |1                                                                    |2                                                                       |1                                                              |2                                                                  |1                                                                        |1                                                |1                                                    |0                                                |3                                                |9                                           |2                                                               |2                                                                          |2                                                                  |1                                                                |1                                                                          |1                                                                     |2                                                                        |1                                                               |1                                                                   |2                                                                         |1                                                 |1                                                     |0                                                 |3                                                 |12                                           |2                                                                |2                                                                           |2                                                                   |2                                                                 |1                                                                           |2                                                                      |2                                                                         |1                                                                |2                                                                    |1                                                                          |1                                                  |1                                                      |0                                                  |3                                                  |14                                            |2                                                                 |2                                                                            |2                                                                    |1                                                                  |1                                                                            |1                                                                       |2                                                                          |1                                                                 |1                                                                     |2                                                                           |1                                                   |1                                                       |0                                                   |4                                       |4                                          |3                                           |8                                       |2                                                          |2                                                         |2                                                     |2                                             |1                                            |1                                                 |2                                             |4                                               |122                                        |2                                                        |2                                                             |2                                                       |2                                                         |2                                                                  |2                                                     |2                                                    |2                                                       |2                                                               |2                                                                  |2                                                          |2                                                            |2                                                |5                                                |89                                          |2                                                         |2                                                              |2                                                        |2                                                          |2                                                                   |2                                                      |2                                                     |2                                                        |2                                                                |2                                                                   |2                                                           |2                                                             |2                                                 |5                                                 |84                                               |2                                                                         |2                                                                     |2                                                                               |2                                                          |2                                                                     |2                                                                   |2                                                                   |2                                                                   |2                                                         |2                                                                 |2                                                               |2                                                               |2                                                                |2                                                     |5                                                   |47                                                          |2                                                                               |2                                                                                 |2                                                                                  |2                                                                                |2                                                                                |2                                                                               |2                                                                               |1                                                                 |2                                                                |1                                                                             |0                                                                 |7                                                        |6                                                  |88                                              |2                                                                    |2                                                                   |2                                                                   |2                                                                     |2                                                                |2                                                            |1                                                     |1                                                         |2                                                                 |0                                                     |45                                                 |2                                                         |2                                                            |2                                                                  |2                                                                           |2                                                                       |2                                                                   |2                                                       |2                                                        |2                                                        |4                                         |3                                              |3                                                                            |13                                                                         |2                                                                                               |2                                                                                                       |2                                                                                        |2                                                                                                  |2                                                                                |1                                                                                         |2                                                                                |0                                                                           |7                                                                             |6                                                                             |0                                                                      |4                                                                    |4                                                                           |4                                                                          |4                                                                             |0                                                                    |4                                                                            |4                                                                  |4                                                                   |4                                                                     |0                                                                       |4                                                                     |3                                                                               |3                                               |0                                                                          |4                                                                            |4                                                                      |4                                                                          |4                                                                        |4                                                                   |4                                                                           |4                                                                          |218                                |2                                                      |2                                                     |2                                              |2                                            |2                                           |2                                              |2                                                        |2                                              |2                                                        |2                                           |2                                                          |2                                                  |2                                           |2                                                 |2                                                                 |2                                                       |2                                            |2                                                |2                                                        |2                                                 |2                                                    |2                                               |2                                                          |2                                                               |2                                        |2                                       |2                                                    |4                                        |115                                      |2                                           |2                                                     |2                                                  |2                                              |2                                                 |2                                                 |2                                                 |2                                            |2                                             |2                                                    |2                                                          |2                                                          |2                                                      |2                                                    |1                                                   |2                                                           |1                                              |2                                                       |0                                              |113                                       |2                                            |2                                                      |2                                                   |2                                               |2                                                  |2                                                  |1                                                  |2                                             |2                                              |2                                                     |2                                                           |2                                                           |2                                                       |2                                                     |1                                                    |2                                                            |2                                               |2                                                        |2                                               |29                                    |2                                                            |2                                                            |2                                                   |2                                              |2                                                    |2                                                    |2                                                  |2                                              |1                                                |1                                                 |2                                           |2                                               |4                                           |3                                    |59                                         |2                                                               |2                                                             |2                                                      |2                                                |2                                                     |2                                                    |2                                                   |2                                                        |1                                                |1                                                    |2                                                      |0                                                |119                                         |2                                                                |2                                                              |2                                                       |2                                                 |2                                                      |2                                                     |2                                                    |2                                                         |1                                                 |2                                                     |2                                                       |0                                                 |498        |0        |498         |498                    |498                     |498                    |7                       |497             |496  |497    |496               |485     |0                   |3              |2      |3       |3  |2   |2   |2   |1   |