From 87127e32943d80e11b9e23da7dbe588088344a45 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Tue, 18 Jun 2024 10:57:09 +0200 Subject: [PATCH 01/28] feat(Metadata): implements metadata module, extends Dataset, DatasetVersionFile with metadata Closes PATHWAYS-143: dataset metadata annotation in OpenHEXA back-end --- config/schema.py | 3 + config/settings/base.py | 1 + hexa/datasets/graphql/schema.graphql | 28 +- ...etfilesample_delete_datasetfilemetadata.py | 59 + hexa/datasets/models.py | 24 +- hexa/datasets/permissions.py | 19 + hexa/datasets/queue.py | 112 +- hexa/datasets/schema/types.py | 8 +- .../datasets/tests/fixtures/example_names.csv | 2 +- .../tests/fixtures/example_names_0_lines.csv | 1 - .../tests/fixtures/example_names_with_age.csv | 62 + .../example_names_with_age_profiling.csv | 5 + .../tests/fixtures/senegal_rural_raw.csv | 3327 +++++++++++++++++ .../fixtures/senegal_rural_raw_profiling.csv | 265 ++ hexa/datasets/tests/test_sample_extraction.py | 107 + hexa/datasets/tests/test_schema.py | 75 +- .../__init__.py} | 0 hexa/metadata/apps.py | 6 + hexa/metadata/graphql/schema.graphql | 107 + hexa/metadata/migrations/0001_initial.py | 53 + hexa/metadata/migrations/__init__.py | 0 hexa/metadata/models.py | 143 + hexa/metadata/permissions.py | 0 hexa/metadata/schema/__init__.py | 13 + hexa/metadata/schema/mutations.py | 88 + hexa/metadata/schema/queries.py | 38 + hexa/metadata/schema/types.py | 51 + hexa/metadata/schema/utils.py | 17 + hexa/metadata/tests/__init__.py | 0 hexa/metadata/tests/test_schema.py | 436 +++ hexa/metadata/tests/testutils.py | 64 + requirements.in | 5 +- requirements.txt | 24 +- 33 files changed, 5096 insertions(+), 47 deletions(-) create mode 100644 hexa/datasets/migrations/0008_datasetfilesample_delete_datasetfilemetadata.py delete mode 100644 hexa/datasets/tests/fixtures/example_names_0_lines.csv create mode 100644 hexa/datasets/tests/fixtures/example_names_with_age.csv create mode 100644 hexa/datasets/tests/fixtures/example_names_with_age_profiling.csv create mode 100644 hexa/datasets/tests/fixtures/senegal_rural_raw.csv create mode 100644 hexa/datasets/tests/fixtures/senegal_rural_raw_profiling.csv create mode 100644 hexa/datasets/tests/test_sample_extraction.py rename hexa/{datasets/tests/fixtures/example_empty_file.csv => metadata/__init__.py} (100%) create mode 100644 hexa/metadata/apps.py create mode 100644 hexa/metadata/graphql/schema.graphql create mode 100644 hexa/metadata/migrations/0001_initial.py create mode 100644 hexa/metadata/migrations/__init__.py create mode 100644 hexa/metadata/models.py create mode 100644 hexa/metadata/permissions.py create mode 100644 hexa/metadata/schema/__init__.py create mode 100644 hexa/metadata/schema/mutations.py create mode 100644 hexa/metadata/schema/queries.py create mode 100644 hexa/metadata/schema/types.py create mode 100644 hexa/metadata/schema/utils.py create mode 100644 hexa/metadata/tests/__init__.py create mode 100644 hexa/metadata/tests/test_schema.py create mode 100644 hexa/metadata/tests/testutils.py diff --git a/config/schema.py b/config/schema.py index 16a7adb06..5f431db3b 100644 --- a/config/schema.py +++ b/config/schema.py @@ -12,6 +12,7 @@ from hexa.databases.schema import databases_bindables, databases_types_def from hexa.datasets.schema import datasets_bindables, datasets_type_defs from hexa.files.schema import files_bindables, files_type_def +from hexa.metadata.schema import metadata_bindables, metadata_type_def from hexa.notebooks.schema import notebooks_bindables, notebooks_type_defs from hexa.pipelines.schema import pipelines_bindables, pipelines_type_defs from hexa.plugins.connector_accessmod.schema import ( @@ -57,6 +58,7 @@ def parse_uuid_value(value): notebooks_type_defs, pipelines_type_defs, workspaces_type_def, + metadata_type_def, databases_types_def, files_type_def, datasets_type_defs, @@ -73,6 +75,7 @@ def parse_uuid_value(value): *countries_bindables, *notebooks_bindables, *workspaces_bindables, + *metadata_bindables, *databases_bindables, *files_bindables, *datasets_bindables, diff --git a/config/settings/base.py b/config/settings/base.py index 867a42423..0168a2317 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -151,6 +151,7 @@ "hexa.plugins.connector_accessmod", "hexa.workspaces", "hexa.databases", + "hexa.metadata", "hexa.files", "hexa.datasets", "django_otp", diff --git a/hexa/datasets/graphql/schema.graphql b/hexa/datasets/graphql/schema.graphql index 85190e781..055ae6c92 100644 --- a/hexa/datasets/graphql/schema.graphql +++ b/hexa/datasets/graphql/schema.graphql @@ -2,7 +2,7 @@ """ Dataset is a collection of files that are related to each other and are versioned. """ -type Dataset { +type Dataset implements HasMetadata{ id: ID! slug: String! name: String! @@ -16,6 +16,8 @@ type Dataset { version(id: ID!): DatasetVersion latestVersion: DatasetVersion links(page: Int = 1, perPage: Int = 15): DatasetLinkPage! + metadata: MetadataObject! + extendedId: String! } """ @@ -34,7 +36,7 @@ type DatasetPermissions { A version of a dataset. A version is a snapshot of the dataset at a point in time. """ -type DatasetVersion { +type DatasetVersion implements HasMetadata{ id: ID! name: String! description: String @@ -44,6 +46,8 @@ type DatasetVersion { permissions: DatasetVersionPermissions! fileByName(name: String!): DatasetVersionFile files(page: Int = 1, perPage: Int = 15): DatasetVersionFilePage! + metadata: MetadataObject! + extendedId: String! } """ @@ -92,33 +96,36 @@ type DatasetVersionPermissions { } """ -Statuses that can occur when generating file metadata +Statuses that can occur when generating file sample """ -enum FileMetadataStatus{ +enum FileSampleStatus{ PROCESSING, FAILED, FINISHED } """ -Metadata for dataset file +File sample for dataset file """ -type DatasetFileMetadata { - sample: JSON! - status: FileMetadataStatus! +type DatasetFileSample { + sample: JSON + status: FileSampleStatus! + statusReason: String } """ A file in a dataset version. """ -type DatasetVersionFile { +type DatasetVersionFile implements HasMetadata{ id: ID! uri: String! filename: String! createdAt: DateTime! createdBy: User contentType: String! - fileMetadata: DatasetFileMetadata + fileSample: DatasetFileSample + metadata: MetadataObject! + extendedId: String! } """ @@ -161,7 +168,6 @@ extend type WorkspacePermissions { createDataset: Boolean! } - """ Input for creating a dataset. """ diff --git a/hexa/datasets/migrations/0008_datasetfilesample_delete_datasetfilemetadata.py b/hexa/datasets/migrations/0008_datasetfilesample_delete_datasetfilemetadata.py new file mode 100644 index 000000000..274edf787 --- /dev/null +++ b/hexa/datasets/migrations/0008_datasetfilesample_delete_datasetfilemetadata.py @@ -0,0 +1,59 @@ +# Generated by Django 4.2.16 on 2024-09-12 09:37 + +import uuid + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("datasets", "0007_alter_dataset_slug_and_more"), + ] + + operations = [ + migrations.CreateModel( + name="DatasetFileSample", + fields=[ + ( + "id", + models.UUIDField( + default=uuid.uuid4, + editable=False, + primary_key=True, + serialize=False, + ), + ), + ("created_at", models.DateTimeField(auto_now_add=True)), + ("updated_at", models.DateTimeField(auto_now=True)), + ("sample", models.JSONField(blank=True, default=list, null=True)), + ( + "status", + models.CharField( + choices=[ + ("PROCESSING", "Processing"), + ("FAILED", "Failed"), + ("FINISHED", "Finished"), + ], + default="PROCESSING", + max_length=10, + ), + ), + ("status_reason", models.TextField(blank=True, null=True)), + ( + "dataset_version_file", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name="samples", + to="datasets.datasetversionfile", + ), + ), + ], + options={ + "abstract": False, + }, + ), + migrations.DeleteModel( + name="DatasetFileMetadata", + ), + ] diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index ea02a894f..34e7e1e6a 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -10,6 +10,7 @@ from slugify import slugify from hexa.core.models.base import Base, BaseQuerySet +from hexa.metadata.models import MetadataMixin from hexa.user_management.models import User logger = logging.getLogger(__name__) @@ -72,7 +73,7 @@ def create_if_has_perm( return dataset -class Dataset(Base): +class Dataset(Base, MetadataMixin): class Meta: constraints = [ models.UniqueConstraint( @@ -100,6 +101,13 @@ class Meta: def latest_version(self): return self.versions.order_by("-created_at").first() + @property + def previous_version(self): + all_version = self.versions.order_by("-created_at").all() + if all_version.count() > 1: + return all_version[1].id + return None + def update_if_has_perm(self, *, principal: User, **kwargs): if not principal.has_perm("datasets.update_dataset", self): raise PermissionDenied @@ -130,6 +138,10 @@ def link(self, principal: User, workspace: any): workspace=workspace, ) + def can_delete_metadata(self, user: User): + if not user.has_perm("datasets.update_dataset", self): + raise PermissionDenied + class DatasetVersionQuerySet(BaseQuerySet): def filter_for_user(self, user: AnonymousUser | User): @@ -168,7 +180,7 @@ def create_if_has_perm( return version -class DatasetVersion(Base): +class DatasetVersion(Base, MetadataMixin): dataset = models.ForeignKey( Dataset, null=False, @@ -250,7 +262,7 @@ def create_if_has_perm( ) -class DatasetVersionFile(Base): +class DatasetVersionFile(Base, MetadataMixin): uri = models.TextField(null=False, blank=False, unique=True) content_type = models.TextField(null=False, blank=False) created_by = models.ForeignKey(User, null=True, on_delete=models.SET_NULL) @@ -261,7 +273,6 @@ class DatasetVersionFile(Base): on_delete=models.CASCADE, related_name="files", ) - objects = DatasetVersionFileManager.from_queryset(DatasetVersionFileQuerySet)() @property @@ -298,7 +309,7 @@ class Meta: ordering = ["uri"] -class DatasetFileMetadata(Base): +class DatasetFileSample(Base): STATUS_PROCESSING = "PROCESSING" STATUS_FAILED = "FAILED" STATUS_FINISHED = "FINISHED" @@ -308,7 +319,6 @@ class DatasetFileMetadata(Base): (STATUS_FAILED, _("Failed")), (STATUS_FINISHED, _("Finished")), ] - sample = JSONField(blank=True, default=list, null=True) status = models.CharField( max_length=10, @@ -321,7 +331,7 @@ class DatasetFileMetadata(Base): null=False, blank=False, on_delete=models.CASCADE, - related_name="metadata_entries", + related_name="samples", ) class Meta: diff --git a/hexa/datasets/permissions.py b/hexa/datasets/permissions.py index e864447de..3abfd8811 100644 --- a/hexa/datasets/permissions.py +++ b/hexa/datasets/permissions.py @@ -2,6 +2,7 @@ Dataset, DatasetLink, DatasetVersion, + DatasetVersionFile, ) from hexa.user_management.models import User from hexa.workspaces.models import ( @@ -109,3 +110,21 @@ def create_dataset_version_file(principal: User, dataset_version: DatasetVersion return False return create_dataset_version(principal, dataset_version.dataset) + + +def delete_dataset_version_file(principal: User, version: DatasetVersionFile): + return delete_dataset_version(principal, version.dataset_version) + + +def update_dataset_version_file(principal: User, dataset_version: DatasetVersionFile): + return update_dataset_version(principal, dataset_version.dataset_version) + + +def view_dataset_version_file( + principal: User, dataset_version_file: DatasetVersionFile +): + return view_dataset_version(principal, dataset_version_file.dataset_version) + + +def view_dataset_version(principal: User, version: DatasetVersion): + return view_dataset(principal, version.dataset) diff --git a/hexa/datasets/queue.py b/hexa/datasets/queue.py index 9d66ee844..8860fd7d7 100644 --- a/hexa/datasets/queue.py +++ b/hexa/datasets/queue.py @@ -7,8 +7,8 @@ from hexa.core import mimetypes from hexa.datasets.api import generate_download_url from hexa.datasets.models import ( - DatasetFileMetadata, DatasetFileMetadataJob, + DatasetFileSample, DatasetVersionFile, ) @@ -41,7 +41,8 @@ def get_df(dataset_version_file: DatasetVersionFile) -> pd.DataFrame: raise e if mime_type == "text/csv": - return pd.read_csv(download_url) + # low_memory is set to False for datatype guessing + return pd.read_csv(download_url, low_memory=False) elif ( mime_type == "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" or mime_type == "application/vnd.ms-excel" @@ -56,16 +57,18 @@ def get_df(dataset_version_file: DatasetVersionFile) -> pd.DataFrame: raise ValueError(f"Unsupported file format: {dataset_version_file.filename}") -def generate_sample(version_file: DatasetVersionFile) -> DatasetFileMetadata: +def generate_sample(version_file: DatasetVersionFile, previous_version_id : str) -> DatasetFileSample: if not is_sample_supported(version_file.filename): raise ValueError(f"Unsupported file format: {version_file.filename}") logger.info(f"Creating dataset sample for version file {version_file.id}") - dataset_file_metadata = DatasetFileMetadata.objects.create( + dataset_file_sample = DatasetFileSample.objects.create( dataset_version_file=version_file, - status=DatasetFileMetadata.STATUS_PROCESSING, + status=DatasetFileSample.STATUS_PROCESSING, + ) + previous_version_file = file_from_previous_version( + version_file.filename, previous_version_id ) - try: df = get_df(version_file) if df.empty is False: @@ -74,16 +77,101 @@ def generate_sample(version_file: DatasetVersionFile) -> DatasetFileMetadata: random_state=SAMPLING_SEED, replace=True, ) - dataset_file_metadata.sample = sample.to_dict(orient="records") - dataset_file_metadata.status = DatasetFileMetadata.STATUS_FINISHED + dataset_file_sample.sample = sample.to_dict(orient="records") + add_system_attributes( + version_file, df, previous_version_file + ) + dataset_file_sample.status = DatasetFileSample.STATUS_FINISHED logger.info(f"Sample saved for file {version_file.id}") except Exception as e: logger.exception(f"Sample creation failed for file {version_file.id}: {e}") - dataset_file_metadata.status = DatasetFileMetadata.STATUS_FAILED - dataset_file_metadata.status_reason = str(e) + dataset_file_sample.status = DatasetFileSample.STATUS_FAILED + dataset_file_sample.status_reason = str(e) finally: - dataset_file_metadata.save() - return dataset_file_metadata + dataset_file_sample.save() + return dataset_file_sample + + +def dataframe_to_sample(data: pd.DataFrame): + random_seed = 22 + return data.sample( + settings.WORKSPACE_DATASETS_FILE_SNAPSHOT_SIZE, + random_state=random_seed, + replace=True, + ) + +def calculate_profiling_per_column(dataframe: pd.DataFrame) -> list: + logger.info("Calculating profiling per column") + for col in dataframe.select_dtypes(include=["object"]).columns: + dataframe[col] = dataframe[col].astype("string") + + data_types = dataframe.dtypes.apply(str).to_dict() + missing_values = dataframe.isnull().sum().to_dict() + unique_values = dataframe.nunique().to_dict() + distinct_values = dataframe.apply(lambda x: x.nunique(dropna=False)).to_dict() + constant_values = ( + dataframe.apply(lambda x: x.nunique() == 1).astype("bool").to_dict() + ) + + metadata_per_column = [ + { + "column_name": column, + "data_type": data_types.get(column), + "missing_values": missing_values.get(column), + "unique_values": unique_values.get(column), + "distinct_values": distinct_values.get(column), + "constant_values": constant_values.get(column), + } + for column in dataframe.columns + ] + + return metadata_per_column + + +def file_from_previous_version( + filename: str, dataset_previous_version_id: str | None +) -> DatasetVersionFile | None: + if dataset_previous_version_id is None or dataset_previous_version_id == "None": + return None + all_previous_files = DatasetVersionFile.objects.filter( + dataset_version=dataset_previous_version_id + ).all() + for file in all_previous_files: + if file.filename == filename: + return file + return None + +def add_system_attributes( + version_file: DatasetVersionFile, + file_content: pd.DataFrame, + previous_version_file: DatasetVersionFile, +): + # Attributes from previous version file are copied to the new version file + if previous_version_file: + logger.info( + f"Copying attributes from previous version - {previous_version_file}" + ) + user_attributes = previous_version_file.get_attributes(system=False).all() + for attribute in user_attributes: + version_file.add_attribute( + key=attribute.key, value=attribute.value, system=False + ) + + # Add attributes from automated profiling + profiling = calculate_profiling_per_column(file_content) + for profile in profiling: + for key, value in profile.items(): + version_file.update_attribute( + key=f'{profile["column_name"]}.{key}', + value=value, + system=True, + ) + # Add description field to each column + version_file.update_attribute( + key=f'{profile["column_name"]}.description', + value="Add description here", + system=True, + ) class DatasetsFileMetadataQueue(AtLeastOnceQueue): diff --git a/hexa/datasets/schema/types.py b/hexa/datasets/schema/types.py index 2f59cceb5..e1d1f9550 100644 --- a/hexa/datasets/schema/types.py +++ b/hexa/datasets/schema/types.py @@ -8,7 +8,7 @@ from hexa.datasets.api import generate_upload_url from hexa.datasets.models import ( Dataset, - DatasetFileMetadata, + DatasetFileSample, DatasetLink, DatasetVersion, DatasetVersionFile, @@ -219,11 +219,11 @@ def resolve_upload_url(obj, info, **kwargs): return None -@dataset_version_file_object.field("fileMetadata") +@dataset_version_file_object.field("fileSample") def resolve_version_file_metadata(obj: DatasetVersionFile, info, **kwargs): try: - return obj.sample_entry - except DatasetFileMetadata.DoesNotExist: + return obj.latest_sample + except DatasetFileSample.DoesNotExist: logging.error(f"No metadata found for file {obj.filename} with id {obj.id}") return None diff --git a/hexa/datasets/tests/fixtures/example_names.csv b/hexa/datasets/tests/fixtures/example_names.csv index 93b20ed12..8c1a6e251 100644 --- a/hexa/datasets/tests/fixtures/example_names.csv +++ b/hexa/datasets/tests/fixtures/example_names.csv @@ -59,4 +59,4 @@ Addison,James Gabriel,Wright Eleanor,Hughes Anthony,Butler -Natalie,Foster \ No newline at end of file +Natalie,Foster diff --git a/hexa/datasets/tests/fixtures/example_names_0_lines.csv b/hexa/datasets/tests/fixtures/example_names_0_lines.csv deleted file mode 100644 index 5c7077c0c..000000000 --- a/hexa/datasets/tests/fixtures/example_names_0_lines.csv +++ /dev/null @@ -1 +0,0 @@ -name,surname \ No newline at end of file diff --git a/hexa/datasets/tests/fixtures/example_names_with_age.csv b/hexa/datasets/tests/fixtures/example_names_with_age.csv new file mode 100644 index 000000000..d6bba81ab --- /dev/null +++ b/hexa/datasets/tests/fixtures/example_names_with_age.csv @@ -0,0 +1,62 @@ +name,surname,age,married +Joe,Doe,31,True +Liam,Smith,47,False +Emma,Johnson,87,False +Noah,Williams,,False +Olivia,Brown,45,False +William,Jones,32,True +Ava,Garcia,45,True +James,Miller,70,True +Sophia,Davis,73,True +Oliver,Martinez,66,False +Isabella,Hernandez,25,True +Benjamin,Lopez,73,True +Mia,Gonzalez,46,False +Elijah,Wilson,98,True +Charlotte,Anderson,70,False +Lucas,Thomas,68,True +Amelia,Taylor,95,True +Mason,Moore,58,False +Harper,Jackson,5,False +Logan,Martin,76,False +Evelyn,Lee,25,False +Alexander,Perez,100,True +Abigail,Thompson,60,True +Ethan,White,45,True +Emily,Harris,94,False +Jacob,Sanchez,90,True +Ella,Clark,28,True +Michael,Ramirez,70,True +Avery,Lewis,46,True +Daniel,Robinson,14,True +Sofia,Walker,56,True +Henry,Young,25,True +Scarlett,Allen,11,True +Jackson,King,28,False +Grace,Scott,61,True +Sebastian,Green,16,False +Victoria,Baker,9,False +Aiden,Adams,83,False +Chloe,Nelson,80,False +Matthew,Hill,46,False +Riley,Campbell,49,False +Samuel,Mitchell,84,True +Aria,Carter,99,False +David,Rogers,9,False +Lily,Evans,65,False +Joseph,Murphy,3,False +Layla,Parker,16,False +Carter,Roberts,41,True +Aubrey,Gonzalez,52,False +Owen,Reed,55,True +Zoey,Cook,33,True +Wyatt,Morgan,4,True +Hannah,Murphy,1,False +Jack,Howard,82,True +Lillian,Richardson,26,True +Luke,Cox,10,True +Addison,James,59,False +Gabriel,Wright,10,True +Eleanor,Hughes,66,True +Anthony,Butler,36,False +Natalie,Foster,8,True diff --git a/hexa/datasets/tests/fixtures/example_names_with_age_profiling.csv b/hexa/datasets/tests/fixtures/example_names_with_age_profiling.csv new file mode 100644 index 000000000..2f836cfab --- /dev/null +++ b/hexa/datasets/tests/fixtures/example_names_with_age_profiling.csv @@ -0,0 +1,5 @@ +column_name,data_type,missing_values,unique_values,distinct_values,constant_values +name,string,0,61,61,False +surname,string,0,59,59,False +age,float64,1,46,47,False +married,bool,0,2,2,False diff --git a/hexa/datasets/tests/fixtures/senegal_rural_raw.csv b/hexa/datasets/tests/fixtures/senegal_rural_raw.csv new file mode 100644 index 000000000..eead198ef --- /dev/null +++ b/hexa/datasets/tests/fixtures/senegal_rural_raw.csv @@ -0,0 +1,3327 @@ +"caseid","survey","strata","v001","v002","anc.4plus","wom.hlthck","baby.hlthck","breastfed","fp.mod.now","fp.mod.ever","hb.1","mens.priv","mens.prod","mens.both","ovrwgt.cnt","undwgt.cnt","stunt.cat2.cnt","waste.cat2.cnt","breastfeed.cnt","meas.full.cnt","dpt.full.cnt","polio.full.cnt","zerodose.cnt","ovrwgt.yn","undwgt.yn","stunt.cat2.yn","waste.cat2.yn","breastfeed.yn","meas.full.yn","dpt.full.yn","polio.full.yn","zerodose.yn","u1mort.yn","u5mort.yn","stl.yn","v021","v023","marr.cohab","polygamy","wife.order","first.wife","infecund.meno","fp.partner.oppose","med.permis","med.cost","med.dist","med.cost.dist.moh","med.alone","med.index","hw.visit.12mo","hw.visit.fp","occupation","occupation.cat","occ.type","working","workingnow.yn","work.seasonal","part.working","part.workingnow.yn","partner.occupation","partner.occupation.cat","earnings.rel.partner","jnt.house.ownership","jnt.land.ownership","num.under5","num.under5.cat","num.child.alive","num.child.alive.cat","num.child.alive.moh.cat","num.child.die","num.child.die.cat","num.child.die.moh.yn","partner.absent.yn","head.sex","yrs.curr.pship","yrs.curr.pship.cat","dv.physical","dv.emotional","dv.sexual","dv.jealous.othermen","dv.nofriends","dv.nofamily.contact","dv.humiliated","dv.threatened","dv.insulted","dv.pushed","dv.slapped","dv.kicked","dv.strangled","dv.weapon","dv.forcedsex1","dv.forcedsex2","dv.armtwist","dv.forcedsex3","dv.hurtpreg.husband","dv.hurtpreg.formerp","dv.prevparter.hurt","dv.prevparter.forcedsex","dv.friend.help","dv.family.help","dv.husband.help","dv.formerp.help","dv.formerb.help","dv.neighbor.help","dv.other.help","dv.sso.help","dv.religious.help","dv.anyone.help","desc.ownincome","desc.lrgpur","desc.money","desc.hlth","desc.fp","desc.visit","jd.index","wd.index","partner.age","partner.age.cat","prev.pship","has.mobile","mobile.financial","has.bank","internet.use","diarrhea.medtreat","bf.fortified.food","bf.sweet.snacks","bf.meat","bf.beans","bf.other.solid","religion","muslim","ed.level","ed.level.moh.cat1","ed.level.moh.cat2","anyed.yn","partner.ed.level","partner.anyed.yn","partner.ed.level.moh.cat1","partner.ed.level.moh.cat2","pl.cat","age.1stcohab","age.1stcohab.cat","age.1stsex","age.1stsex.cat","age.1stbrth","age.1stbrth.moh.cat1","age.1stbrth.moh.cat2","num.preg","num.preg.cat","num.preg.moh.cat","total.sex.partners","discharge.checkedhealth","discharge.checkedhealth.moh.cat","fertility.pref","fertility.pref.cat","ideal.n.child","ideal.n.child.moh.cat","ideal.n.child.cat","partner.desire.child","condom.last.sex","condom.2nd.last.sex","condom.3rd.last.sex","condom.source","n.sex.excl.partner.12m","n.sex.incl.partner.12m","sex.gifts.12m","source.fp.gov","no.fp.reason","dv.index","female.circumcision","know.genitalcut","genitalflesh.removed","genital.nicked","genital.sewn","freq.newsp","freq.rad","freq.tv","any.media.yn","birth.reg.cnt","birth.reg.yn","birth.knowreg","wt","lives.away","micronutrient.12m","num.solidfood","hh.electricity","hh.radio","hh.tv","hh.refrig","hh.bike","hh.motor","hh.car","hh.mobile","hh.cart","hh.motorboat","hh.motortransport.yn","hh.computer","hh.stove","hh.video","hh.internet","hh.land","hh.animal","hh.bank.acct","wealth.index.ur","hh.house.ownership","hh.savingsclub","hh.send.funds","hh.send.funds.cat","hh.recv.funds","hh.recv.funds.cat","hh.bourse","hh.bourse.cnt","hh.bourse.moh.yn","hh.autre","hh.pct.no.insurance","hh.no.insurance.yn","num.15up","num.15up.cat","num.under15","num.under15.cat","hh.kidwom.rat","hh.kidwom.rat.cat","hh.where.cook","hh.where.cook.moh.cat","hh.cook.inside.yn","hh.clean.fuel","hh.rooms.num","hh.rooms.num.moh.cat","latrine","no.latrine","hh.shared.latrine","hh.num.sharelatrine","hh.noimp.latrine","water","hh.nowatpur","hh.noimp.water","hh.wat.interrupt","hh.noimp.floor","hh.urban.slum.un","hh.urban.slum.zulu","hh.sanitation","hh.sanitation.cat","disability.yn","hh.memsleep","malaria.zone","highestyearsedinHH.yrs","highestyearsedinHH.7plus","m.num.partners","m.age.1stbirth","m.recent.sex","m.more.children","m.men.dec.earnings","m.men.dec.purchases","m.fp.posters","LCA2_class","LCA3_class","LCA4_class","LCA5_class","LCA6_class","LCA7_class","LCA8_class","LCA9_class","LCA10_class" + 1 1 2,SN81FL,urban,1,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","46","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,never partnered,"20+",25,"20+",30,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,3.595757,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,14.0,yes,Recieved support,80.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"0-2.0",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 1 2 2,SN81FL,urban,1,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,never partnered,"20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.595757,0.0,,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"0-2.0",4.0,"0-7",1,29,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 1 3 1,SN8BFL,urban,1,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,1,dakar urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"10",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","57","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,never partnered,"15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,2.884875,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 1 4 2,SN8BFL,urban,1,4,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,others,education,some education,0.0,don't know,don't know,,,'No' to asked languages,never partnered,"15-19",16,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,yes,,,other,0,1,,,,"1",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.884875,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",2.0,"0-7",1,26,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 1 5 2,SN81FL,urban,1,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","29",under 30,No,1.0,yes,yes,1.0,"yes, child was treated",0.0,0.0,1.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,never partnered,"20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.595757,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 1 7 2,SN81FL,urban,1,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,1,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,currently pregnant,husband/partner alone,"0","1-3","62","60+",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,never partnered,"20+",34,"20+",34,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.595757,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",18.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 1 10 2,SN8BFL,urban,1,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,1,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.884875,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",3.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 1 12 1,SN81FL,urban,1,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,1,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,never partnered,"20+",23,"20+",28,"20-29","25-39",2.0,"1-3","2+","3+",no one,TBA / no one,have another,,More than 6,"6+","5+",not partnered,yes,,,other,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,3.595757,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 1 13 1,SN81FL,urban,1,13,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","68","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"1",<3,"0-4",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.595757,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 1 13 1,SN8BFL,urban,1,13,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,1,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,"10",More than 5 years,No,Yes,No,Yes,No,No,"yes, but not in the last 12 months",never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","62","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"38","20+",38,"20+",41,"30+","40+",2.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.884875,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,1.0,"0-1",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 1 14 2,SN8BFL,urban,1,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,unskilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,2.884875,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,8.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",1,32,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 1 15 3,SN81FL,urban,1,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,1,dakar urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","3+",no one,TBA / no one,have another,don't know,"4","3-5","0-4",not partnered,no,,,condom not used,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.595757,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,8.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,3.5,"0-2.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 1 15 7,SN81FL,urban,1,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"13",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.595757,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,8.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,3.5,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 1 16 2,SN8BFL,urban,1,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,1,"1",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","57","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"12","5-14",12,"5-14",13,<20,<15,7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.884875,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,7.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,8.0,"0-2.0",15.0,"7+",1,28,wants no more,wants no more,1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 1 18 1,SN81FL,urban,1,18,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,1,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","55","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"31","20+",31,"20+",35,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,3.595757,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,2.0,yes,Recieved support,80.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,9.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,5.0,"0-2.0",13.0,"7+",0,,,,,,yes,1,3,1,5,3,3,3,9,1 + 1 19 2,SN8BFL,urban,1,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,Yes,Yes,Yes,No,No,never,never,often,never,never,never,never,never,"yes, but not in the last 12 months",never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"21","20+",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,2.884875,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,5.0,"0-2.0",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 1 20 2,SN8BFL,urban,1,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,1,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","75","60+",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.884875,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"0-2.0",17.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 1 21 2,SN8BFL,urban,1,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,2.884875,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",1.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 2 1 2,SN8BFL,urban,2,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",,Inconsistent or don't know,11,<20,<15,7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,4.311268,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",6.0,"0-7",,,,,,,,2,1,3,1,5,7,4,8,8 + 2 2 2,SN81FL,urban,2,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"1","1",yes,6.026897,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,17.0,yes,Recieved support,92.3076923076923,1.0,7.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.7142857142857142,"0-2.0",18.0,"7+",1,45,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 2 3 1,SN81FL,urban,2,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,don't know,jointly only,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"34","20+",34,"20+",35,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,6.026897,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 2 4 4,SN81FL,urban,2,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","55","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,6.026897,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.2,1.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.5,"0-2.0",8.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 2 5 6,SN81FL,urban,2,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","49","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,6.026897,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,1.0,yes,Recieved support,100.0,1.0,9.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 2 6 2,SN81FL,urban,2,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2,dakar urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",6.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,6.026897,1.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.0,"0-2.0",0.0,"0-7",3,30,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 2 6 2,SN8BFL,urban,2,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.311268,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",18.0,"7+",1,31,wants within 2 years,wants within 2 years,0.0,1.0,yes,1,2,4,5,6,3,3,1,6 + 2 7 2,SN81FL,urban,2,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,don't know,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"26",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,6.026897,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 2 8 1,SN8BFL,urban,2,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,2,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"33","20+",15,"15-19",24,"20-29","20-24",2.0,"1-3","2+","3+",no one,TBA / no one,have another,don't know,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,4.311268,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,8.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 2 10 4,SN81FL,urban,2,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,,"2",<3,"0-4",not partnered,yes,,,pharmacy,1,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,6.026897,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,yes,1,2,1,5,6,1,2,1,7 + 2 11 2,SN81FL,urban,2,11,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",25,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,6.026897,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 2 12 2,SN81FL,urban,2,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,6.026897,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,4.0,"3-4",2.0,"1-2",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",21.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,0.0,yes,1,2,1,5,6,1,2,5,7 + 2 16 2,SN81FL,urban,2,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",2,"1-2",<3,2,"2 or more",1.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",14,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"3","1",yes,6.026897,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",6.0,"0-7",1,22,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 2 17 1,SN81FL,urban,2,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,more than him,both alone and jointly,does not own,1,"1",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","53","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",24,"20-29","20-24",7.0,"7+","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,6.026897,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,7.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,6.0,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 2 18 8,SN81FL,urban,2,18,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"31","20+",17,"15-19",31,"30+","25-39",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,6.026897,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,72.72727272727273,1.0,6.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"0-2.0",18.0,"7+",1,27,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 2 19 2,SN81FL,urban,2,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","58","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,6.026897,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 2 21 4,SN8BFL,urban,2,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,2,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Worked in the past year,0.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,someone else,respondent alone,husband/partner alone,"1-3","1-3","72","60+",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,17,<20,"15-19",7.0,"7+","2+","3+",midwife/aux midwife,midwife / doctor / nurse,sterilized/infecund,does not want more kids,"6","6+","5+",,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.311268,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,8.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 3 1 3,SN8BFL,urban,3,1,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","49","30-59",Yes,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.22947,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,8.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 3 2 2,SN81FL,urban,3,2,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,3,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"1","1",yes,2.959188,1.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",8.0,"7+",2,30,unsure timing,undecided,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 3 3 2,SN81FL,urban,3,3,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,3,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",4,"3-5","3-5",2,"2 or more",1.0,0.0,female,not partnered,No longer with first partner,Yes,Yes,Yes,Yes,Yes,Yes,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",often,often,sometimes,never,never,often,sometimes,sometimes,sometimes,No,No,,,No,Yes,Yes,No,No,No,No,No,No,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",6.0,"4-6","2+","3+",no one,TBA / no one,have another,,"6","6+","5+",not partnered,yes,yes,,pharmacy,2,2,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,2.959188,1.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,9.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 3 3 5,SN8BFL,urban,3,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","39","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,3.22947,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,12.0,yes,Recieved support,75.0,1.0,8.0,"5 and up",8.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.2,"0-2.0",19.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 3 3 10,SN8BFL,urban,3,3,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","36","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,3.22947,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,12.0,yes,Recieved support,75.0,1.0,8.0,"5 and up",8.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.2,"0-2.0",19.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 3 4 2,SN81FL,urban,3,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",19,"15-19",19,<20,"15-19",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,2.959188,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",10.0,"7+",1,25,unsure timing,undecided,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 3 7 2,SN81FL,urban,3,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,3,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,No,No,Yes,No,No,No,never,never,never,never,never,never,never,never,sometimes,sometimes,never,sometimes,No,No,,,No,No,No,No,No,No,No,No,No,yes,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",12,"5-14",25,"20-29","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.959188,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 3 7 2,SN8BFL,urban,3,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"2","1",yes,3.22947,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,10.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 3 8 5,SN81FL,urban,3,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,don't know,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","64","60+",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,2.959188,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,12.0,yes,Recieved support,90.0,1.0,10.0,"5 and up",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",15.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 3 8 21,SN8BFL,urban,3,8,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"36","20+",36,"20+",39,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.22947,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,7.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.4285714285714284,"0-2.0",0.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 3 9 2,SN8BFL,urban,3,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,alone only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","40","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"32","20+",32,"20+",37,"30+","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.22947,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 3 10 1,SN81FL,urban,3,10,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,3,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,,"4","3-5","0-4",not partnered,yes,,,pharmacy,1,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,2.959188,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"0-2.0",0.0,"0-7",,,,,,,,1,3,1,5,3,3,3,1,4 + 3 11 4,SN8BFL,urban,3,11,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,"10",More than 5 years,Yes,Yes,No,Yes,No,No,never,never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","0","36","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,undecided,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.22947,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",7.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.25,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 3 12 2,SN81FL,urban,3,12,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,not at all,at least once a week,1.0,"1","1",yes,2.959188,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",0.0,"0-7",2,27,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 3 13 2,SN81FL,urban,3,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",0,"0",<3,1,"1",1.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,2.959188,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 3 13 2,SN8BFL,urban,3,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,christian,0.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.22947,1.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 3 14 5,SN8BFL,urban,3,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"10","5-14",10,"5-14",12,<20,<15,3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,3.22947,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.47058823529412,1.0,10.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.125,"0-2.0",5.0,"0-7",2,31,unsure timing,"wants, unsure timing",1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 3 14 9,SN8BFL,urban,3,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"1-3","4+","38","30-59",No,0.0,no,yes,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.22947,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.47058823529412,1.0,10.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.125,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 3 14 15,SN8BFL,urban,3,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,3.22947,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.47058823529412,1.0,10.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.125,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 3 15 2,SN81FL,urban,3,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","24",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,yes,,,pharmacy,0,1,,0.0,respondent or partner opposed,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,2.959188,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 3 15 2,SN8BFL,urban,3,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","48","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",29,"20-29","25-39",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,3.22947,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,9.0,"5 and up",0.0,"0",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.2857142857142858,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 3 16 1,SN81FL,urban,3,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,household and domestic,service/domestic,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.959188,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",5.0,"0-7",1,23,unsure timing,"wants, unsure timing",1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 3 20 2,SN8BFL,urban,3,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","42","30-59",Yes,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.22947,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,11.0,yes,Recieved support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",5.0,"0-7",1,21,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 3 22 3,SN81FL,urban,3,22,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.959188,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,5.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 4 3 2,SN8BFL,urban,4,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,more than him,alone only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","44","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"33","20+",33,"20+",34,"30+","25-39",2.0,"1-3","2+","2",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,5.652551,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,20.0,1.0,3.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 4 3 6,SN81FL,urban,4,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.754728,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,43.75,1.0,12.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",14.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 4 3 11,SN81FL,urban,4,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 12 months,,professional/technical/managerial,,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,Arabic,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.754728,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,43.75,1.0,12.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",14.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 4 4 2,SN81FL,urban,4,4,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Self,Currently working,1.0,All year,Worked last 12 months,,sales,sales,more than him,alone only,alone only,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","66","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants fewer,yes,,,pharmacy,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.754728,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,6.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"0-2.0",18.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 4 6 3,SN81FL,urban,4,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",15,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.754728,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,1 + 4 8 2,SN8BFL,urban,4,8,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",husband wants more,yes,,,pharmacy,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,not at all,not at all,1.0,"1","1",yes,5.652551,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,25.0,1.0,3.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",20.0,"7+",1,35,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 4 9 3,SN81FL,urban,4,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.754728,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 4 10 2,SN81FL,urban,4,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,christian,0.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"35","20+",21,"20+",36,"30+","25-39",1.0,"1-3","1","3+",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"2",<3,"0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.754728,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 4 12 2,SN81FL,urban,4,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","36","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",35,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","2",<3,"0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,3.754728,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",15.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 4 12 2,SN8BFL,urban,4,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,4,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,alone only,does not own,2,"2",7,"6+","6+",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","57","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",9.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,5.652551,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"0-2.0",13.0,"7+",3,33,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 4 12 8,SN8BFL,urban,4,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Family,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,someone else,husband/ partner alone,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,5.652551,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"0-2.0",13.0,"7+",1,21,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 4 13 5,SN81FL,urban,4,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","32","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,3.754728,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,5.0,"5 and up",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 4 16 1,SN8BFL,urban,4,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,5.652551,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,5.0,"0-2.0",3.0,"0-7",1,25,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 4 19 2,SN81FL,urban,4,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,3.754728,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,25.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,0.5,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 4 19 5,SN8BFL,urban,4,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"29","20+",29,"20+",30,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,5.652551,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 4 19 10,SN8BFL,urban,4,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","41","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",1.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"32","20+",32,"20+",33,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","2",<3,"0-4",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,5.652551,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 4 20 2,SN8BFL,urban,4,20,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","64","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"5","3-5","5+",,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,5.652551,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",18.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 4 22 2,SN8BFL,urban,4,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","36","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,0.0,christian,0.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,5.652551,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",17.0,"7+",1,32,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 5 1 2,SN81FL,urban,5,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,6.015093,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",14.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 5 2 1,SN81FL,urban,5,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,5,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,yes,1.0,,,,,,,christian,0.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,,"1",<3,"0-4",not partnered,yes,,,pharmacy,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,6.015093,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.0,"0-2.0",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,4 + 5 2 1,SN8BFL,urban,5,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,5,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","51","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.782525,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 5 4 1,SN81FL,urban,5,4,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,5,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",4.0,"4-6","2+","3+",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",not partnered,yes,,,shop,1,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,6.015093,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"0-2.0",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,1,4 + 5 5 2,SN81FL,urban,5,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,household and domestic,service/domestic,,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,6.015093,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 5 6 3,SN8BFL,urban,5,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,more than him,alone only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","38","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.782525,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,37.5,1.0,5.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"0-2.0",21.0,"7+",1,26,infecund,declared infecund (respondent or partner(s)),1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 5 6 8,SN8BFL,urban,5,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,5,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,2.782525,1.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,37.5,1.0,5.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"0-2.0",21.0,"7+",,,,,,,,2,2,4,5,6,5,5,1,2 + 5 7 1,SN8BFL,urban,5,7,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,5,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,yes,1.0,,,,,,,no religion,0.0,higher,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"18","15-19",18,"15-19",29,"20-29","25-39",2.0,"1-3","2+","3+",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",not partnered,yes,,,other,1,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,2.782525,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,1.0,"0-2.0",18.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 5 8 8,SN8BFL,urban,5,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,5,dakar urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","57","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.782525,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,37.5,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.1428571428571428,"0-2.0",18.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,2,3 + 5 10 4,SN81FL,urban,5,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,don't know,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,6.015093,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,8.0,"5 and up",3.0,"3-4",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.2,"0-2.0",16.0,"7+",1,37,wants within 2 years,wants within 2 years,0.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 5 10 7,SN81FL,urban,5,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","41","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,costs too much,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,6.015093,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,8.0,"5 and up",3.0,"3-4",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.2,"0-2.0",16.0,"7+",1,41,unsure timing,"wants, unsure timing",0.0,0.0,yes,1,1,2,1,2,7,6,3,5 + 5 10 10,SN81FL,urban,5,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,someone else,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","37","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,6.015093,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,8.0,"5 and up",3.0,"3-4",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.2,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 5 14 3,SN81FL,urban,5,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,6.015093,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",6.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 5 15 1,SN81FL,urban,5,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","41","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"32","20+",32,"20+",33,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,6.015093,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.0,"0-2.0",16.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 5 16 2,SN81FL,urban,5,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,more than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","41","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,1.0,1.0,0.0,1.0,christian,0.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",30,"30+","25-39",3.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,6.015093,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,20.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",18.0,"7+",1,36,wants within 2 years,wants within 2 years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 5 16 3,SN8BFL,urban,5,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,5,dakar urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,alone only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,don't know,"4","3-5","0-4",not partnered,yes,,,pharmacy,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.782525,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,4.0,"3-4",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.2,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 5 20 2,SN81FL,urban,5,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","31","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,christian,0.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,6.015093,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",18.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 5 20 2,SN8BFL,urban,5,20,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,both alone and jointly,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","43","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,christian,0.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",23,"20+",29,"20-29","25-39",3.0,"1-3","2+","2",doctor/nurse,midwife / doctor / nurse,sterilized/infecund,does not want more kids,"2",<3,"0-4",,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,at least once a week,not at all,less than once a week,1.0,"1","1",yes,2.782525,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.25,"0-2.0",20.0,"7+",1,31,wants no more,wants no more,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 5 21 4,SN81FL,urban,5,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,no,no,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,6.015093,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,16.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.2,"0-2.0",14.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 5 21 7,SN81FL,urban,5,21,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","47","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,6.015093,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,16.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.2,"0-2.0",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 5 21 17,SN81FL,urban,5,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,Occassional,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"1",1.0,1.0,no,no,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,6.015093,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,16.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.2,"0-2.0",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 5 21 21,SN81FL,urban,5,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,5,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",6,"6+","6+",1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","53","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Diola,"13","5-14",13,"5-14",15,<20,"15-19",8.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,6.015093,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,16.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.2,"0-2.0",14.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 5 22 2,SN81FL,urban,5,22,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,5,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","61","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,6.015093,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,11.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",14.0,"7+",0,,,,,,yes,1,3,2,3,2,2,8,4,10 + 6 4 1,SN8BFL,urban,6,4,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","49","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",15,"15-19",15,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.00823,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,14.0,yes,Recieved support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,5.0,"0-2.0",12.0,"7+",1,21,wants no more,wants no more,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 6 5 2,SN81FL,urban,6,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","35","30-59",No,1.0,yes,no,1.0,"yes, child was treated",1.0,0.0,1.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.858607,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 6 5 2,SN8BFL,urban,6,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,,not at all,not at all,at least once a week,1.0,"2","1",yes,3.00823,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 6 5 5,SN8BFL,urban,6,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.00823,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 6 6 8,SN8BFL,urban,6,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,6,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,household and domestic,service/domestic,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","49","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"22","20+",22,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,3.00823,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,9.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.1666666666666665,"0-2.0",9.0,"7+",1,24,wants no more,wants no more,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 6 9 6,SN8BFL,urban,6,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","2",<3,"0-4",husband wants more,yes,,,private hospital/clinic/doctor's office,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.00823,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4,"0-2.0",18.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 6 10 2,SN81FL,urban,6,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,2.858607,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,9.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",5.0,"0-7",1,29,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 6 12 2,SN8BFL,urban,6,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,more than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","35","30-59",Yes,1.0,yes,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",4.0,"4-6","2+","3+",no one,TBA / no one,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.00823,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,5.0,"0-2.0",5.0,"0-7",2,19,wants within 2 years,wants within 2 years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 6 14 2,SN81FL,urban,6,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"21","20+",17,"15-19",22,"20-29","20-24",1.0,"1-3","1","3+",midwife/aux midwife,midwife / doctor / nurse,have another,,"6","6+","5+",not partnered,no,no,,condom not used,2,2,yes,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,2.858607,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,8.0,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,4,6,5,5,1,2 + 6 15 2,SN8BFL,urban,6,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,respondent alone,respondent alone,respondent alone,husband/ partner alone,respondent alone,"0","4+","33","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,3.00823,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 6 16 2,SN81FL,urban,6,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","49","30-59",No,1.0,yes,no,1.0,,,,,,,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"23","20+",23,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.858607,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,40.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,7.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",13.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 6 18 1,SN8BFL,urban,6,18,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",Yes,1.0,yes,yes,1.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.00823,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,42.857142857142854,1.0,5.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"0-2.0",14.0,"7+",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 6 18 2,SN8BFL,urban,6,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,christian,0.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.00823,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,42.857142857142854,1.0,5.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"0-2.0",14.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 6 20 2,SN81FL,urban,6,20,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,alone only,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.858607,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,2.0,yes,Recieved support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",1,22,wants within 2 years,wants within 2 years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 6 21 1,SN8BFL,urban,6,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6,dakar urbain,1.0,"1","1",First wife,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,Yes,Yes,No,No,No,No,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,"yes, but not in the last 12 months",never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","48","30-59",No,1.0,no,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Arabic,"20","20+",20,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"1","1",yes,3.00823,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,14.0,yes,Recieved support,80.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,7.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 6 22 2,SN81FL,urban,6,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,2.858607,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",9.0,"7+",1,23,unsure timing,undecided,1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 7 1 3,SN8BFL,urban,7,1,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,Yes,Yes,Yes,Yes,Yes,No,sometimes,never,sometimes,sometimes,often,never,never,never,sometimes,sometimes,never,sometimes,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","54","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"24","20+",24,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,no,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.42911,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.73684210526315,1.0,11.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.1666666666666665,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 7 1 9,SN8BFL,urban,7,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","35","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,don't know,don't know,don't know,less than once a week,less than once a week,less than once a week,1.0,"2","1",yes,3.42911,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.73684210526315,1.0,11.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.1666666666666665,"0-2.0",13.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 7 4 1,SN81FL,urban,7,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,3.206124,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",5.0,"0-7",1,45,wants within 2 years,wants within 2 years,1.0,0.0,yes,2,2,3,4,4,4,1,6,9 + 7 4 4,SN8BFL,urban,7,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.42911,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,7.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 7 5 1,SN81FL,urban,7,5,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,7,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Someone else,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,don't know,other/dk,,jointly only,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,female,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.206124,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,8.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",3.0,"0-7",,,,,,,,1,1,3,3,5,7,8,4,10 + 7 6 2,SN8BFL,urban,7,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","34","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.42911,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",1,29,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 7 7 7,SN8BFL,urban,7,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.42911,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,2.0,yes,Recieved support,11.11111111111111,1.0,6.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 7 8 2,SN81FL,urban,7,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,7,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,other,respondent alone,currently pregnant,other,"0","1-3","43","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",30,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.206124,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 7 9 2,SN81FL,urban,7,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"27",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,other,respondent alone,respondent alone,other,"1-3","1-3","56","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,christian,0.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,yes,,,relatives/friends,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.206124,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 7 10 1,SN81FL,urban,7,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,about the same,jointly only,alone only,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","50","30-59",No,1.0,no,no,1.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"37","20+",27,"20+",30,"30+","25-39",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.206124,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",11.0,"7+",1,27,wants no more,wants no more,0.0,0.0,yes,1,3,1,5,3,3,3,9,1 + 7 10 2,SN8BFL,urban,7,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,0.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,3.42911,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",0.0,"0-7",1,29,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 7 11 2,SN81FL,urban,7,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,Yes,Yes,Yes,Yes,Yes,Yes,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,"yes, but not in the last 12 months",never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"22","20+",20,"20+",20,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.206124,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,3.3333333333333335,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 7 14 2,SN81FL,urban,7,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","47","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",19,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,3.206124,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",12.0,"7+",1,24,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,4,2,4,4,1,7,9 + 7 15 1,SN81FL,urban,7,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.206124,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 7 15 8,SN8BFL,urban,7,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","29",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.42911,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 7 16 1,SN81FL,urban,7,16,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,3.206124,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 7 16 2,SN8BFL,urban,7,16,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","35","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",16,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",no,3.42911,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 7 17 2,SN81FL,urban,7,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,often,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"31","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.206124,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 7 17 2,SN8BFL,urban,7,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.42911,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,5.0,"0-2.0",6.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 7 18 2,SN81FL,urban,7,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,3.206124,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"0-2.0",3.0,"0-7",1,32,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 7 19 7,SN81FL,urban,7,19,1.0,1.0,1.0,1.0,0.0,1.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,household and domestic,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","47","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"26","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"1",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.206124,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,10.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.3333333333333335,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 7 19 10,SN81FL,urban,7,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,7,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"11",More than 5 years,Yes,Yes,No,No,No,No,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.206124,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,10.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.3333333333333335,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 7 20 2,SN8BFL,urban,7,20,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,7,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","52","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.42911,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,11.11111111111111,1.0,6.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.25,"0-2.0",11.0,"7+",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 7 20 7,SN8BFL,urban,7,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,7,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.42911,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,11.11111111111111,1.0,6.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.25,"0-2.0",11.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 7 21 1,SN8BFL,urban,7,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,7,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,don't know,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent alone,other,husband/partner alone,"1-3","1-3","48","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.42911,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.0,"0-2.0",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 7 22 1,SN81FL,urban,7,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","48","30-59",Yes,1.0,yes,yes,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",19,"15-19",19,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,yes,yes,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.206124,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,12.5,1.0,3.0,"3-4",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 7 22 5,SN81FL,urban,7,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Diola,"31","20+",20,"20+",31,"30+","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,yes,yes,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.206124,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,12.5,1.0,3.0,"3-4",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 8 1 4,SN81FL,urban,8,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"24",More than 5 years,Yes,Yes,No,No,No,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.671781,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 8 2 14,SN81FL,urban,8,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,skilled manual,manual,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,4.671781,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,73.68421052631578,1.0,9.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,4.0,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 8 3 4,SN81FL,urban,8,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"35","20+",35,"20+",36,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.671781,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,8.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 8 3 7,SN81FL,urban,8,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,No,No,Yes,No,No,No,never,never,never,never,never,never,never,never,sometimes,sometimes,never,sometimes,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,4.671781,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,8.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 8 3 10,SN81FL,urban,8,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","51","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,4.671781,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,8.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 8 4 2,SN81FL,urban,8,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,3.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,husband/partner alone,respondent and husband/ partner,other,"0","0","15",under 30,Yes,1.0,no,no,1.0,"yes, child was treated",1.0,1.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,less than once a week,at least once a week,1.0,"3","1",yes,4.671781,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",9.0,"5 and up",1.8,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",13.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 8 4 2,SN8BFL,urban,8,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,4.46254,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,8.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",18.0,"7+",1,34,wants within 2 years,wants within 2 years,0.0,1.0,no,2,2,3,4,4,4,1,6,9 + 8 4 7,SN81FL,urban,8,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,9,"3+",3,"3-5","3-5",1,"1",1.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"3","1",yes,4.671781,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",9.0,"5 and up",1.8,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",13.0,"7+",1,31,unsure timing,"wants, unsure timing",1.0,0.0,yes,1,2,1,5,6,1,2,5,7 + 8 4 13,SN81FL,urban,8,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,9,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,4.671781,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",9.0,"5 and up",1.8,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",13.0,"7+",0,,,,,,no,1,2,1,5,4,1,6,6,5 + 8 5 2,SN81FL,urban,8,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,0.0,8,dakar urbain,1.0,"1","1",First wife,1.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","46","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,4.671781,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 8 6 3,SN81FL,urban,8,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,skilled manual,manual,less than him,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,husband/partner alone,respondent alone,other,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.671781,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,62.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,yes,1,1,2,1,2,7,6,3,5 + 8 6 3,SN8BFL,urban,8,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.46254,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,4.0,yes,Recieved support,88.88888888888889,1.0,12.0,"5 and up",6.0,"5 and up",0.14285714285714285,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.2857142857142856,"0-2.0",13.0,"7+",1,27,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 8 7 2,SN8BFL,urban,8,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","47","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.46254,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,58.333333333333336,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 8 7 4,SN81FL,urban,8,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","46","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"30","20+",30,"20+",33,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,4.671781,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 8 7 7,SN8BFL,urban,8,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"2","1",yes,4.46254,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,58.333333333333336,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 8 7 8,SN81FL,urban,8,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.671781,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 8 7 11,SN8BFL,urban,8,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","32","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.46254,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,58.333333333333336,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 8 8 1,SN8BFL,urban,8,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.46254,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",13.0,"7+",1,26,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 8 8 5,SN81FL,urban,8,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"30","20+",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.671781,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,7.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.25,"0-2.0",4.0,"0-7",1,35,wants no more,wants no more,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 8 8 10,SN81FL,urban,8,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","2",<3,"0-4",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,4.671781,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,7.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.25,"0-2.0",4.0,"0-7",1,31,unsure timing,"wants, unsure timing",1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 8 9 1,SN81FL,urban,8,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,8,dakar urbain,1.0,"1","3+",Second or more wife,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","50","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.671781,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"0-2.0",15.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 8 9 2,SN8BFL,urban,8,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,8,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","58","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.46254,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,5.0,"0-2.0",1.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 8 10 2,SN81FL,urban,8,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",5,"2 or more",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","50","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.671781,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",4.0,"0-7",1,25,unsure timing,undecided,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 8 10 2,SN8BFL,urban,8,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,more than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","32","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",other/TBA,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,at least once a week,less than once a week,less than once a week,1.0,"1","1",yes,4.46254,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",18.0,"7+",1,20,wants no more,wants no more,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 8 10 6,SN81FL,urban,8,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,don't know,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.671781,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",4.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 8 11 2,SN81FL,urban,8,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,8,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"36","20+",36,"20+",37,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.671781,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 8 12 2,SN81FL,urban,8,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,4.671781,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,5.0,"0-2.0",5.0,"0-7",1,37,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 8 13 3,SN81FL,urban,8,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"26","20+",20,"20+",23,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,4.671781,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.6666666666666665,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 8 14 2,SN81FL,urban,8,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","3+",no one,TBA / no one,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,1,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.671781,1.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.0,"0-2.0",0.0,"0-7",0,32,,,,,no,1,3,1,5,3,3,3,1,4 + 8 14 2,SN8BFL,urban,8,14,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","55","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.46254,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",0.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 8 15 3,SN81FL,urban,8,15,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",0,"0",<3,1,"1",1.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","31","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,4.671781,0.0,,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,6.0,"5 and up",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 8 16 2,SN81FL,urban,8,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","35","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"24","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,4.671781,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",4.0,"0-7",1,,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 8 17 2,SN81FL,urban,8,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"4",Less than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","44","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"0","0",yes,4.671781,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,40.0,1.0,2.0,"2",3.0,"3-4",3.0,4.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 8 19 2,SN81FL,urban,8,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,4.671781,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,housed by employer/ family/ friend,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,4.0,"3-4",7.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.6666666666666665,"0-2.0",3.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 8 19 2,SN8BFL,urban,8,19,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","47","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,4.46254,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 8 20 1,SN81FL,urban,8,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,4.671781,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 8 20 2,SN8BFL,urban,8,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,not at all,at least once a week,1.0,"1","1",yes,4.46254,1.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",13.0,"7+",1,20,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 8 21 2,SN81FL,urban,8,21,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","63","60+",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.671781,1.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 8 21 2,SN8BFL,urban,8,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.46254,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,16.666666666666664,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 8 22 2,SN81FL,urban,8,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,0.0,"yes, child was treated",1.0,1.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,4.671781,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",8.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 9 1 2,SN8BFL,urban,9,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,2,"2",5,"3-5","3-5",3,"2 or more",1.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","82","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",18,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.600557,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.33333333333333,1.0,12.0,"5 and up",3.0,"3-4",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,2.142857142857143,"0-2.0",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 9 1 7,SN8BFL,urban,9,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"28","20+",28,"20+",32,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.600557,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.33333333333333,1.0,12.0,"5 and up",3.0,"3-4",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,2.142857142857143,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 9 1 9,SN8BFL,urban,9,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,4.600557,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.33333333333333,1.0,12.0,"5 and up",3.0,"3-4",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,2.142857142857143,"0-2.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 9 2 2,SN81FL,urban,9,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,jointly only,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","52","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,yes,,,pharmacy,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,5.477129,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",16.0,"7+",1,29,wants no more,wants no more,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 9 2 2,SN8BFL,urban,9,2,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,9,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",7,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,someone else,respondent alone,respondent alone,respondent alone,respondent alone,"1-3","4+","56","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",,Inconsistent or don't know,17,<20,"15-19",9.0,"7+","2+","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,4.600557,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,5.0,"0-2.0",1.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 9 2 3,SN8BFL,urban,9,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"28","20+",20,"20+",26,"20-29","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,1,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"2","1",yes,4.600557,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,5.0,"0-2.0",1.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 9 3 7,SN8BFL,urban,9,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,9,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.600557,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,8.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.5,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 9 3 11,SN8BFL,urban,9,3,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"23","20+",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"1",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,4.600557,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,8.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.5,"0-2.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 9 4 2,SN8BFL,urban,9,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,9,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,don't know,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",3.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,4.600557,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,3.0,"0-2.0",0.0,"0-7",2,34,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 9 5 2,SN8BFL,urban,9,5,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,9,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,Yes,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,no,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.600557,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.75,"0-2.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 9 5 12,SN8BFL,urban,9,5,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"12","5-14",12,"5-14",13,<20,<15,2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,0.0,,,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,4.600557,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.75,"0-2.0",10.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 9 6 14,SN8BFL,urban,9,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9,dakar urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","61","60+",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,4.600557,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 9 7 2,SN81FL,urban,9,7,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,9,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,1.0,1.0,0.0,,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,don't know,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"15","15-19",15,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,5.477129,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 9 7 2,SN8BFL,urban,9,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,9,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"22","20+",13,"5-14",23,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,4.600557,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",1.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 9 7 8,SN81FL,urban,9,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,5.477129,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 9 7 17,SN81FL,urban,9,7,0.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 12 months,,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","48","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,5.477129,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",14.0,"7+",,,,,,,,1,2,4,5,6,3,3,1,6 + 9 8 2,SN81FL,urban,9,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,don't know,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,5.477129,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",15.0,"7+",1,31,wants within 2 years,wants within 2 years,0.0,1.0,no,2,2,4,2,6,5,5,7,2 + 9 8 2,SN8BFL,urban,9,8,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,9,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",6,"6+","6+",1,"1",1.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"0","0",yes,4.600557,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",10.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.5,"0-2.0",0.0,"0-7",2,20,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 9 8 8,SN8BFL,urban,9,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","39","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"0","0",yes,4.600557,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",10.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.5,"0-2.0",0.0,"0-7",2,20,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 9 9 6,SN8BFL,urban,9,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,2.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,4.600557,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 9 9 11,SN8BFL,urban,9,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.600557,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 9 10 2,SN81FL,urban,9,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,5.477129,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,42.10526315789473,1.0,10.0,"5 and up",9.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.1666666666666665,"0-2.0",12.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 9 10 3,SN8BFL,urban,9,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.600557,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,6.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",5.0,"0-7",1,33,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 9 10 8,SN81FL,urban,9,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","36","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,5.477129,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,42.10526315789473,1.0,10.0,"5 and up",9.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.1666666666666665,"0-2.0",12.0,"7+",0,,,,,,yes,1,2,1,5,6,1,2,5,7 + 9 10 12,SN81FL,urban,9,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,both alone and jointly,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","40","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,5.477129,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,42.10526315789473,1.0,10.0,"5 and up",9.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.1666666666666665,"0-2.0",12.0,"7+",1,33,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,2,1,5,4,1,6,6,5 + 9 11 2,SN81FL,urban,9,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,5.477129,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,6.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.666666666666667,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 9 11 6,SN81FL,urban,9,11,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,5.477129,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,6.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.666666666666667,"0-2.0",5.0,"0-7",,,,,,,,1,2,4,5,6,3,3,1,6 + 9 11 6,SN8BFL,urban,9,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,husband/ partner alone,respondent alone,"1-3","1-3","52","30-59",Yes,1.0,no,no,0.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",36,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,4.600557,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 9 11 9,SN8BFL,urban,9,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,9,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","52","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.600557,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 9 11 12,SN8BFL,urban,9,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,unskilled manual,manual,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","30","30-59",No,0.0,no,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.600557,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 9 12 5,SN8BFL,urban,9,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,4.600557,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,8.0,"5 and up",5.0,"5 and up",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 9 12 8,SN8BFL,urban,9,12,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","39","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"0","0",no,4.600557,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,8.0,"5 and up",5.0,"5 and up",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 9 13 1,SN81FL,urban,9,13,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,female,"22",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","45","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"13","5-14",13,"5-14",16,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,5.477129,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,6.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 9 14 1,SN81FL,urban,9,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",23,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,5.477129,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,20.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 9 14 4,SN8BFL,urban,9,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","40","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.600557,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,6.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",11.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 9 15 1,SN81FL,urban,9,15,,,,,0.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,1.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","40","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,5.477129,0.0,,,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 9 16 1,SN8BFL,urban,9,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",1,"1",1.0,1.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,sterilized/infecund,does not want more kids,"4","3-5","0-4",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,4.600557,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,2.0,"2",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 9 17 2,SN81FL,urban,9,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,Yes,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,5.477129,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",12.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 9 17 5,SN8BFL,urban,9,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.600557,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,71.42857142857143,1.0,5.0,"5 and up",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.75,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 9 18 1,SN81FL,urban,9,18,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,9,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","47","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Wolof,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,5.477129,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 9 18 6,SN8BFL,urban,9,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"22","20+",22,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,4.600557,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,37.5,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.6,"0-2.0",11.0,"7+",1,28,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 9 19 1,SN81FL,urban,9,19,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","49","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Mandinque,"24","20+",24,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,5.477129,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 9 20 1,SN81FL,urban,9,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,services,service/domestic,don't know,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","57","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,don't know,don't know,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,5.477129,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",7.0,"7+",3,32,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 9 20 4,SN8BFL,urban,9,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","25",under 30,No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,4.600557,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",8.0,"7+",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 9 21 5,SN8BFL,urban,9,21,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,9,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,4.600557,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.333333333333333,"0-2.0",13.0,"7+",,,,,,,,2,2,4,5,6,5,5,1,2 + 9 22 3,SN8BFL,urban,9,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"27","20+",,Inconsistent or don't know,27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,4.600557,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,66.66666666666666,1.0,8.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"0-2.0",9.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 9 22 7,SN8BFL,urban,9,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,no partner,no partner,not working,not working,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.600557,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,66.66666666666666,1.0,8.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"0-2.0",9.0,"7+",0,,,,,,no,2,2,4,5,6,5,5,1,2 + 9 22 11,SN8BFL,urban,9,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,4.600557,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,66.66666666666666,1.0,8.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"0-2.0",9.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 10 1 2,SN81FL,urban,10,1,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","52","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Poular,"24","20+",24,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.695949,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 10 1 2,SN8BFL,urban,10,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","41","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.701011,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.5,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 10 3 2,SN8BFL,urban,10,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","56","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",22,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.701011,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 10 4 2,SN81FL,urban,10,4,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Wolof,"19","15-19",19,"15-19",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.695949,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,10.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.8,"0-2.0",11.0,"7+",1,32,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,3,1,5,3,3,3,2,3 + 10 4 4,SN8BFL,urban,10,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"35","20+",35,"20+",36,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"1",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.701011,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,9.0,"5 and up",4.0,"3-4",0.16666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.25,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 10 6 2,SN8BFL,urban,10,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",,Inconsistent or don't know,15,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,2.701011,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.6666666666666667,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 10 7 2,SN8BFL,urban,10,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,1,"1",8,"6+","6+",1,"1",1.0,0.0,male,"27",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","59","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.701011,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,6.0,"0-2.0",1.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 10 7 9,SN81FL,urban,10,7,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Serer,"18","15-19",18,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.695949,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.11764705882352,1.0,12.0,"5 and up",5.0,"5 and up",0.14285714285714285,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.875,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 10 8 3,SN81FL,urban,10,8,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Wolof,"28","20+",28,"20+",30,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.695949,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,40.0,1.0,3.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",11.0,"7+",1,40,unsure timing,undecided,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 10 8 3,SN8BFL,urban,10,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,2.701011,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,6.0,yes,Recieved support,100.0,1.0,6.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",11.0,"7+",1,37,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 10 9 2,SN81FL,urban,10,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,sometimes,never,never,never,never,never,sometimes,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,not at all,1.0,"1","1",yes,3.695949,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 10 9 2,SN8BFL,urban,10,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,Yes,Yes,No,No,No,No,never,never,often,often,often,never,never,never,never,never,never,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","49","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,2.701011,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",6.0,"5 and up",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"0-2.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 10 10 3,SN81FL,urban,10,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.695949,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",11.0,"7+",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 10 10 8,SN81FL,urban,10,10,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","36","30-59",No,1.0,yes,no,1.0,,,,,,,christian,0.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.695949,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",11.0,"7+",1,24,unsure timing,"wants, unsure timing",1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 10 10 12,SN81FL,urban,10,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","39","30-59",No,1.0,yes,no,1.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.695949,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",11.0,"7+",1,,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 10 10 14,SN81FL,urban,10,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","39","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.695949,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",11.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,3,4,4,4,1,6,9 + 10 11 2,SN81FL,urban,10,11,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,1.0,1.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,3.695949,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",2.5,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 10 11 2,SN8BFL,urban,10,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,4,"2 or more",1.0,0.0,male,"20",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","49","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.701011,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.6666666666666667,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 10 11 7,SN81FL,urban,10,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,Yes,No,Yes,No,No,No,never,never,never,never,sometimes,never,never,never,sometimes,sometimes,sometimes,sometimes,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","28",under 30,No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,3.695949,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",2.5,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 10 13 1,SN8BFL,urban,10,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","33","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.701011,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",1.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 10 14 2,SN81FL,urban,10,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","50","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.695949,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",5.0,"0-7",0,27,,,,,no,2,1,3,4,1,7,7,3,8 + 10 14 2,SN8BFL,urban,10,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",9,"6+","6+",0,"0",0.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.701011,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"0-2.0",9.0,"7+",3,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 10 14 6,SN8BFL,urban,10,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,10,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","56","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"21","20+",21,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.701011,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"0-2.0",9.0,"7+",3,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 10 15 2,SN8BFL,urban,10,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"0","0",yes,2.701011,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",3.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 10 17 3,SN81FL,urban,10,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.695949,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.25,1.0,Food cooked inside,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 10 17 8,SN81FL,urban,10,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.695949,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.25,1.0,Food cooked inside,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 10 18 2,SN81FL,urban,10,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","52","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.695949,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",3.0,"0-7",1,46,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 10 18 2,SN8BFL,urban,10,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,10,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",not partnered,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,2.701011,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,8,8 + 10 19 2,SN8BFL,urban,10,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","39","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Arabic,"26","20+",26,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,2.701011,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,61.904761904761905,1.0,16.0,"5 and up",4.0,"3-4",0.42857142857142855,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.3333333333333335,"0-2.0",17.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 10 19 8,SN8BFL,urban,10,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",0,"0",<3,1,"1",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","69","60+",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,no,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.701011,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,61.904761904761905,1.0,16.0,"5 and up",4.0,"3-4",0.42857142857142855,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.3333333333333335,"0-2.0",17.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 10 20 1,SN8BFL,urban,10,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,1.0,1.0,0.0,10,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,8,"3+",6,"6+","6+",1,"1",1.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","47","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",24,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,2.701011,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.0,1.0,10.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",2,32,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 10 20 2,SN81FL,urban,10,20,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,10,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","52","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.695949,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,1.2,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 10 20 7,SN8BFL,urban,10,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,8,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"12","5-14",12,"5-14",14,<20,<15,3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,2.701011,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.0,1.0,10.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",2,32,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 10 20 13,SN8BFL,urban,10,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,8,"3+",6,"6+","6+",0,"0",0.0,0.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,2.701011,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.0,1.0,10.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",2,30,unsure timing,"wants, unsure timing",1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 10 20 19,SN8BFL,urban,10,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,10,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,8,"3+",4,"3-5","3-5",1,"1",1.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"3","1",yes,2.701011,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.0,1.0,10.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",2,30,unsure timing,"wants, unsure timing",1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 10 21 2,SN81FL,urban,10,21,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,someone else,husband/ partner alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.695949,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 10 21 8,SN8BFL,urban,10,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,2.701011,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,93.33333333333333,1.0,11.0,"5 and up",4.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 10 22 1,SN81FL,urban,10,22,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,10,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,other,husband/partner alone,respondent alone,other,"0","1-3","42","30-59",Yes,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"35","20+",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","3+",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.695949,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",3,32,wants within 2 years,wants within 2 years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 10 22 2,SN8BFL,urban,10,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent alone,husband/partner alone,respondent alone,other,husband/partner alone,"1-3","1-3","50","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,2.701011,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",11.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 10 22 6,SN8BFL,urban,10,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,2.701011,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 11 1 8,SN81FL,urban,11,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,both alone and jointly,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","3+",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,not married,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.330807,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,9.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,11.0,"0-2.0",17.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 11 2 4,SN81FL,urban,11,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",Yes,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,3.330807,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,68.0,1.0,13.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked inside,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",5.0,"0-7",1,33,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 11 2 11,SN81FL,urban,11,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","31","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,3.330807,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,68.0,1.0,13.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked inside,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",5.0,"0-7",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 11 2 18,SN81FL,urban,11,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.330807,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,68.0,1.0,13.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked inside,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 11 3 6,SN81FL,urban,11,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,1.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,husband/ partner alone,respondent alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"17","15-19",17,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.330807,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,15.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,12,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"0-2.0",14.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 11 3 16,SN81FL,urban,11,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.330807,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,15.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,12,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"0-2.0",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 11 3 19,SN81FL,urban,11,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","1-3","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.330807,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,15.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,12,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 11 4 5,SN81FL,urban,11,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,3.330807,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,92.85714285714286,1.0,8.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,7.0,"0-2.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 11 5 5,SN81FL,urban,11,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.330807,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,6.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4,"0-2.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 11 7 2,SN8BFL,urban,11,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,11,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,4,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"15",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,5.886755,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",9.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",4.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 11 7 5,SN81FL,urban,11,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.330807,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,9.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"0-2.0",15.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 11 7 8,SN8BFL,urban,11,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","56","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,5.886755,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",9.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 11 8 1,SN81FL,urban,11,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","52","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,3.330807,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,yes,1,3,2,3,2,2,8,4,10 + 11 8 2,SN8BFL,urban,11,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",8,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,5.886755,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Other,Other,0.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 11 8 10,SN81FL,urban,11,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,11,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",6,"6+","6+",2,"2 or more",1.0,0.0,female,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","65","60+",No,0.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,3.330807,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,yes,2,1,3,1,5,6,4,8,8 + 11 9 1,SN81FL,urban,11,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","49","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.330807,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 11 9 3,SN8BFL,urban,11,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,5.886755,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 11 11 2,SN8BFL,urban,11,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,jointly only,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","61","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"20","20+",20,"20+",23,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,5.886755,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 11 11 6,SN81FL,urban,11,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.330807,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 11 11 8,SN8BFL,urban,11,11,,,,,0.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",10,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",10.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,5.886755,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 11 12 3,SN81FL,urban,11,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,household and domestic,service/domestic,less than him,does not own,does not own,6,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",Yes,1.0,no,no,1.0,"no, child wasn't treated",0.0,1.0,1.0,0.0,1.0,christian,0.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",30,"30+","25-39",4.0,"4-6","2+","2",no one,TBA / no one,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.330807,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,95.0,1.0,13.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",14.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 11 15 1,SN8BFL,urban,11,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","49","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"12","5-14",12,"5-14",17,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,5.886755,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"0-2.0",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 11 16 2,SN81FL,urban,11,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,1,"1",6,"6+","6+",3,"2 or more",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","64","60+",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",16,"15-19",17,<20,"15-19",9.0,"7+","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,3.330807,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",6.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 11 16 2,SN8BFL,urban,11,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,5.886755,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 11 17 3,SN81FL,urban,11,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","3+",no one,TBA / no one,have another,,"5","3-5","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.330807,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,9.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 11 19 1,SN8BFL,urban,11,19,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","53","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",21,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,5.886755,0.0,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 11 19 2,SN81FL,urban,11,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","41","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",7.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.330807,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,10.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 11 20 3,SN81FL,urban,11,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.330807,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,6.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.3636363636363635,"0-2.0",6.0,"0-7",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 11 20 13,SN81FL,urban,11,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",30,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.330807,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,6.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.3636363636363635,"0-2.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 11 21 1,SN8BFL,urban,11,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",3.0,"1-3","2+","3+",no one,TBA / no one,have another,don't know,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,5.886755,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",1.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",7.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 11 22 1,SN81FL,urban,11,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","47","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.330807,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",5.0,"0-7",1,,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 11 22 11,SN8BFL,urban,11,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,11,dakar urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"0","0",no,5.886755,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,15.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",9.0,"7+",0,,,,,,yes,2,2,4,2,6,5,5,7,2 + 11 22 14,SN8BFL,urban,11,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,5.886755,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,15.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",9.0,"7+",1,30,wants within 2 years,wants within 2 years,0.0,1.0,yes,1,1,2,1,2,7,6,3,5 + 11 22 19,SN8BFL,urban,11,22,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,11,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,5.886755,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,15.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",9.0,"7+",0,,,,,,yes,2,1,3,1,5,6,4,8,8 + 12 1 1,SN81FL,urban,12,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,12,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,1.0,female,"24",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",32,"30+","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,2.353587,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 12 1 11,SN8BFL,urban,12,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,12,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,currently pregnant,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"3","3-5","0-4",not partnered,no,,,condom not used,1,1,no,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,3.706178,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.85714285714286,1.0,12.0,"5 and up",2.0,"1-2",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.0,"0-2.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 12 2 2,SN81FL,urban,12,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.353587,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",11.0,"7+",1,38,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 12 2 11,SN8BFL,urban,12,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"21","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,no,no,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.706178,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",5.0,"0-7",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 12 3 4,SN81FL,urban,12,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",31,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.353587,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 12 4 1,SN81FL,urban,12,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 12 months,,skilled manual,manual,about the same,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.353587,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",6.0,"0-7",1,30,wants within 2 years,wants within 2 years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 12 5 4,SN81FL,urban,12,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,jointly only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","15",under 30,No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,2.353587,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",16.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 12 5 4,SN8BFL,urban,12,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"13","5-14",13,"5-14",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.706178,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4,"0-2.0",9.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 12 5 6,SN8BFL,urban,12,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,1.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","49","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,no,no,no,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,3.706178,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 12 6 2,SN8BFL,urban,12,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"33",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","63","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.706178,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.3333333333333333,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 12 6 11,SN8BFL,urban,12,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","29",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.706178,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.3333333333333333,"0-2.0",16.0,"7+",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 12 7 1,SN81FL,urban,12,7,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 12 months,,other,other/dk,less than him,jointly only,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,other,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.353587,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,14.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 12 7 2,SN8BFL,urban,12,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,"19",More than 5 years,No,No,Yes,No,No,No,never,never,never,never,never,never,never,never,"yes, but not in the last 12 months",never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","51","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.706178,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,7.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.5,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 12 7 7,SN81FL,urban,12,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,more than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,Yes,No,No,Yes,No,Yes,never,never,never,never,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","29",under 30,No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,2.353587,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,14.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",15.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 12 7 11,SN81FL,urban,12,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,other,other/dk,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"28","20+",28,"20+",31,"30+","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.353587,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,14.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 12 8 2,SN8BFL,urban,12,8,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","63","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.706178,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 12 9 1,SN81FL,urban,12,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","60","60+",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",32,"30+","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,2.353587,1.0,,,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,8.0,"5 and up",1.0,"1-2",0.16666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 12 9 7,SN81FL,urban,12,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,2.353587,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,8.0,"5 and up",1.0,"1-2",0.16666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 12 10 2,SN81FL,urban,12,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","50","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",8.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.353587,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",6.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",11.0,"7+",1,37,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 12 10 2,SN8BFL,urban,12,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","27",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,3.706178,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 12 13 1,SN8BFL,urban,12,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,0.0,female,"20",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","53","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.706178,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,7.0,"0-2.0",2.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 12 14 2,SN81FL,urban,12,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,"yes, child was treated",1.0,0.0,1.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,2.353587,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",0.0,"0-7",1,27,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 12 14 5,SN81FL,urban,12,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,2.353587,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",0.0,"0-7",2,29,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 12 14 7,SN8BFL,urban,12,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.706178,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,11.0,"5 and up",2.0,"1-2",0.14285714285714285,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",16.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 12 15 2,SN81FL,urban,12,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.353587,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",18.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 12 15 2,SN8BFL,urban,12,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"23",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","55","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.706178,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,57.14285714285714,1.0,9.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 12 15 6,SN81FL,urban,12,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","60","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.353587,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",18.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 12 15 9,SN8BFL,urban,12,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.706178,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,57.14285714285714,1.0,9.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 12 16 1,SN81FL,urban,12,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"29","20+",29,"20+",31,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.353587,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,70.0,1.0,7.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",13.0,"7+",1,38,wants within 2 years,wants within 2 years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 12 16 3,SN8BFL,urban,12,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.706178,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,6.0,"5 and up",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",9.0,"7+",1,32,wants in 2+ years,wants after 2+ years,,0.0,no,1,2,1,5,6,1,2,5,7 + 12 17 4,SN81FL,urban,12,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,12,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,8,"3+",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.353587,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,4.571428571428571,"0-2.0",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 12 17 10,SN81FL,urban,12,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,8,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,2.353587,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,4.571428571428571,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 12 17 17,SN81FL,urban,12,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,8,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.353587,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,4.571428571428571,"0-2.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 12 17 25,SN81FL,urban,12,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,12,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,8,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,2.353587,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,4.571428571428571,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 12 17 29,SN81FL,urban,12,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,8,"3+",7,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",7.0,"7+","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,2.353587,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,4.571428571428571,"0-2.0",11.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 12 18 2,SN8BFL,urban,12,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,more than him,alone only,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","57","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.706178,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,8.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",17.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 12 18 4,SN8BFL,urban,12,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"31","20+",31,"20+",33,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.706178,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,8.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",17.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 12 18 6,SN81FL,urban,12,18,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,12,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,currently pregnant,husband/partner alone,"1-3","1-3","37","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"22","20+",16,"15-19",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,1.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.353587,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"0-2.0",9.0,"7+",0,,,,,,yes,1,3,1,5,3,3,3,2,3 + 12 21 2,SN81FL,urban,12,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","54","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.353587,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 12 22 2,SN8BFL,urban,12,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"25","20+",,Inconsistent or don't know,25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.706178,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.3333333333333335,"0-2.0",14.0,"7+",1,33,unsure timing,undecided,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 13 1 4,SN81FL,urban,13,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,5.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 1 7,SN81FL,urban,13,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","42","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,5.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 3 6,SN81FL,urban,13,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","31","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 3 7,SN8BFL,urban,13,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,3.53738,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,9.0,"5 and up",2.0,"1-2",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2,"0-2.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 13 3 8,SN81FL,urban,13,3,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,Yes,No,No,No,No,No,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,,respondent alone,someone else,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","35","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",0.0,0.0,1.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,3.656702,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 4 2,SN81FL,urban,13,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,other,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","50","30-59",Yes,0.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.656702,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,8.333333333333332,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",12.0,"7+",1,49,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 13 4 7,SN81FL,urban,13,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"34","20+",,Inconsistent or don't know,34,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.656702,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,8.333333333333332,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",12.0,"7+",1,33,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 13 6 4,SN81FL,urban,13,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.85714285714286,1.0,12.0,"5 and up",8.0,"5 and up",1.1666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.888888888888889,"0-2.0",6.0,"0-7",1,24,unsure timing,undecided,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 13 6 10,SN81FL,urban,13,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.85714285714286,1.0,12.0,"5 and up",8.0,"5 and up",1.1666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.888888888888889,"0-2.0",6.0,"0-7",1,26,wants within 2 years,wants within 2 years,1.0,0.0,no,1,1,2,1,5,7,6,4,5 + 13 6 14,SN81FL,urban,13,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","28",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,3.656702,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.85714285714286,1.0,12.0,"5 and up",8.0,"5 and up",1.1666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.888888888888889,"0-2.0",6.0,"0-7",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 13 6 19,SN81FL,urban,13,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","33","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,3.656702,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.85714285714286,1.0,12.0,"5 and up",8.0,"5 and up",1.1666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.888888888888889,"0-2.0",6.0,"0-7",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 13 7 5,SN81FL,urban,13,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","34","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,55.55555555555556,1.0,7.0,"5 and up",2.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 7 8,SN8BFL,urban,13,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,13,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","42","30-59",Yes,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.53738,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 13 7 11,SN8BFL,urban,13,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","38","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.53738,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 13 7 15,SN8BFL,urban,13,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"25","20+",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.53738,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 13 8 1,SN8BFL,urban,13,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,13,dakar urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",9,"6+","6+",2,"2 or more",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","55","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",11.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,"2","1",yes,3.53738,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",6.0,"5 and up",3.0,4.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.0,"0-2.0",3.0,"0-7",2,27,wants no more,wants no more,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 13 8 3,SN81FL,urban,13,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,6.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",9.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 13 9 3,SN81FL,urban,13,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,13,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,skilled manual,manual,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,female,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","45","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,76.92307692307693,1.0,6.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6,"0-2.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 13 9 3,SN8BFL,urban,13,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"2",1.0,1.0,don't know,don't know,don't know,at least once a week,not at all,at least once a week,1.0,"1","1",yes,3.53738,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,57.14285714285714,1.0,6.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 9 10,SN81FL,urban,13,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","45","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.656702,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,76.92307692307693,1.0,6.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 10 2,SN8BFL,urban,13,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","45","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.53738,1.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.3333333333333333,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,yes,1,3,2,3,2,2,8,4,10 + 13 10 8,SN81FL,urban,13,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,55.55555555555556,1.0,6.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.25,"0-2.0",14.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 13 11 1,SN81FL,urban,13,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,alone only,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","62","60+",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",18,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,3.656702,0.0,,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",13.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 13 11 4,SN8BFL,urban,13,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","31","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"27","20+",20,"20+",20,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.53738,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 13 12 1,SN8BFL,urban,13,12,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,about the same,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",8.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.53738,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",3.0,"3-4",2.0,3.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 13 12 3,SN81FL,urban,13,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,husband/partner alone,respondent and husband/ partner,other,"0","0","61","60+",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",41,"30+","40+",1.0,"1-3","1","2",no one,TBA / no one,have another,"5+ years","2",<3,"0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,3.656702,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,8.0,"5 and up",4.0,"3-4",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.2,"0-2.0",7.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 13 13 2,SN81FL,urban,13,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"33",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,yes,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.656702,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"0-2.0",16.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 13 13 4,SN8BFL,urban,13,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.53738,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,9.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 13 13 10,SN8BFL,urban,13,13,,,,,0.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",Yes,0.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.53738,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,9.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 13 14 2,SN8BFL,urban,13,14,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.53738,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"0-2.0",10.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 13 14 3,SN81FL,urban,13,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,13,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,husband/partner alone,currently pregnant,other,"0","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,3.656702,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",19.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 13 16 1,SN81FL,urban,13,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","39","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",15,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.656702,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,16.666666666666664,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",12.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,3,1,5,3,3,3,2,1 + 13 16 1,SN8BFL,urban,13,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,13,dakar urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,have another,,"6","6+","5+",not partnered,no,,,condom not used,1,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.53738,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",2.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,4 + 13 17 2,SN81FL,urban,13,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"6",More than 5 years,Yes,Yes,No,Yes,No,Yes,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","34","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,3.656702,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,3.0,"3-4",6.0,"5 and up",3.0,4.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 17 4,SN8BFL,urban,13,17,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","68","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.53738,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.4,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 13 18 2,SN8BFL,urban,13,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","51","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.53738,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",16.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 13 19 3,SN81FL,urban,13,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,37.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 13 19 5,SN8BFL,urban,13,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.53738,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 20 8,SN81FL,urban,13,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.656702,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",11.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 13 22 1,SN8BFL,urban,13,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"29","20+",29,"20+",33,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.53738,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 13 22 3,SN81FL,urban,13,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,13,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","34","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.656702,0.0,,,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,7.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.0,"0-2.0",16.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,0.0,yes,1,3,2,3,2,2,8,4,10 + 14 2 2,SN8BFL,urban,14,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,14,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","51","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.715734,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,13.0,yes,Recieved support,0.0,0.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",9.0,"7+",1,28,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 14 3 2,SN8BFL,urban,14,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","48","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"33","20+",33,"20+",34,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,4.715734,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 14 6 2,SN8BFL,urban,14,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"29","20+",29,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.715734,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4,"0-2.0",18.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 14 6 12,SN8BFL,urban,14,6,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,14,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,about the same,does not own,does not own,2,"2",0,"0",<3,1,"1",1.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","40","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"33","20+",33,"20+",34,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.715734,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4,"0-2.0",18.0,"7+",1,44,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,4,5,6,3,3,1,6 + 14 7 2,SN8BFL,urban,14,7,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,14,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","59","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,no,no,no,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,4.715734,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 14 7 7,SN8BFL,urban,14,7,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","59","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"29","20+",29,"20+",32,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,don't know,don't know,don't know,less than once a week,not at all,at least once a week,1.0,"2","1",yes,4.715734,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 14 11 2,SN8BFL,urban,14,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,14,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,4.715734,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.5,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 14 14 2,SN8BFL,urban,14,14,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,14,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,alone only,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","37","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"30","20+",25,"20+",25,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,4.715734,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"0-2.0",16.0,"7+",2,26,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 14 15 2,SN8BFL,urban,14,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.715734,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,40.0,1.0,4.0,"3-4",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 14 17 2,SN8BFL,urban,14,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,alone only,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","49","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",5.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,undecided,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.715734,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",20.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 14 18 2,SN8BFL,urban,14,18,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,14,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"21","20+",21,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,4.715734,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.5,"0-2.0",14.0,"7+",1,26,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 14 18 5,SN8BFL,urban,14,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,14,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"2",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.715734,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.5,"0-2.0",14.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 14 19 2,SN8BFL,urban,14,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 12 months,,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,"yes, but not in the last 12 months",sometimes,sometimes,never,never,never,never,sometimes,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.715734,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 14 20 4,SN8BFL,urban,14,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,4.715734,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.4,"0-2.0",9.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 14 20 11,SN8BFL,urban,14,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,14,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,more than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent alone,husband/partner alone,respondent alone,husband/ partner alone,husband/partner alone,"1-3","1-3","43","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"33","20+",33,"20+",35,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.715734,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.4,"0-2.0",9.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 15 3 2,SN8BFL,urban,15,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,15,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",8,"6+","6+",1,"1",1.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.553613,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,18.181818181818183,1.0,8.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5714285714285714,"0-2.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 15 4 8,SN8BFL,urban,15,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,4.553613,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,63.63636363636363,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2,"0-2.0",15.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 15 5 8,SN8BFL,urban,15,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.553613,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,10.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 15 5 13,SN8BFL,urban,15,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","26",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.553613,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,10.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 15 6 2,SN8BFL,urban,15,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","49","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.553613,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"0-2.0",13.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 15 10 2,SN8BFL,urban,15,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent and husband/partner,husband/ partner alone,husband/partner alone,"1-3","0","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"16","15-19",16,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,4.553613,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.4,"0-2.0",14.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 15 11 6,SN8BFL,urban,15,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","26",under 30,No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,4.553613,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,9.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 15 13 1,SN8BFL,urban,15,13,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","42","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.553613,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,8.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 15 13 8,SN8BFL,urban,15,13,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",23,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,4.553613,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,8.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 15 15 2,SN8BFL,urban,15,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,respondent alone,respondent and husband/partner,currently pregnant,respondent alone,"1-3","4+","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,4.553613,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,92.85714285714286,1.0,8.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"0-2.0",3.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 15 17 2,SN8BFL,urban,15,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,2,"2",1,"1-2",<3,3,"2 or more",1.0,0.0,male,"26",More than 5 years,No,Yes,No,No,No,No,"yes, but not in the last 12 months",never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","59","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.553613,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 15 18 2,SN8BFL,urban,15,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,1,"1",9,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","71","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",9.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.553613,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,4.0,yes,Recieved support,10.0,1.0,6.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 15 19 6,SN8BFL,urban,15,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,alone only,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,Yes,Yes,No,No,No,Yes,"yes, but not in the last 12 months",never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,"yes, but not in the last 12 months",never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","55","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.553613,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,46.15384615384615,1.0,6.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.333333333333333,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 15 21 2,SN8BFL,urban,15,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","42","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.553613,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 18 1 4,SN81FL,urban,18,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,yes,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","2",<3,"0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.98497,1.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,70.83333333333334,1.0,16.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3,"0-2.0",16.0,"7+",,,,,,,,2,1,3,1,1,7,4,8,8 + 18 1 8,SN81FL,urban,18,1,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,3.98497,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,70.83333333333334,1.0,16.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3,"0-2.0",16.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 18 1 10,SN81FL,urban,18,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,18,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"35","20+",35,"20+",36,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.98497,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,70.83333333333334,1.0,16.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3,"0-2.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 18 2 3,SN81FL,urban,18,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","49","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"32","20+",32,"20+",33,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.98497,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 18 3 2,SN81FL,urban,18,3,,,,,0.0,1.0,,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,18,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","49","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"29","20+",29,"20+",29,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.98497,1.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 18 4 2,SN81FL,urban,18,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","46","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Wolof,"18","15-19",,Inconsistent or don't know,19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.98497,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,6.0,yes,Recieved support,47.82608695652174,1.0,14.0,"5 and up",6.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2857142857142856,"0-2.0",18.0,"7+",1,23,unsure timing,undecided,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 18 4 15,SN81FL,urban,18,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,don't know,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,3.98497,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,6.0,yes,Recieved support,47.82608695652174,1.0,14.0,"5 and up",6.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2857142857142856,"0-2.0",18.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 18 4 22,SN81FL,urban,18,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,less than once a week,1.0,"1","1",yes,3.98497,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,6.0,yes,Recieved support,47.82608695652174,1.0,14.0,"5 and up",6.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2857142857142856,"0-2.0",18.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 18 5 4,SN81FL,urban,18,5,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,female,"18",More than 5 years,No,Yes,No,Yes,No,No,sometimes,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.98497,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 18 6 4,SN81FL,urban,18,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,services,service/domestic,Self,Currently working,1.0,All year,Worked last 12 months,,skilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.98497,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",16.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,3,2,3,2,2,8,4,10 + 18 6 8,SN81FL,urban,18,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","2",<3,"0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,3.98497,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",16.0,"7+",1,40,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 18 6 11,SN81FL,urban,18,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,husband/partner alone,respondent and husband/ partner,other,"0","1-3","36","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",0.0,0.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"31","20+",31,"20+",31,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.98497,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",16.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 18 12 2,SN81FL,urban,18,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.98497,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,7.0,"0-2.0",2.0,"0-7",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 18 13 2,SN81FL,urban,18,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","25",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,3.98497,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 18 14 2,SN81FL,urban,18,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,18,dakar urbain,1.0,"1","3+",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,don't know,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"1-3","1-3","61","60+",Yes,1.0,yes,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,3.98497,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",4.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 18 15 2,SN81FL,urban,18,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","46","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"37","20+",37,"20+",39,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.98497,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 18 17 5,SN81FL,urban,18,17,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,both alone and jointly,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","37","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.98497,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 18 17 11,SN81FL,urban,18,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","31","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.98497,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 18 18 5,SN81FL,urban,18,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.98497,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",16.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,1,2,1,5,6,1,2,5,7 + 18 19 3,SN81FL,urban,18,19,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - employee,agricultural,about the same,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.98497,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 18 20 3,SN81FL,urban,18,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","40","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,1.0,0.0,0.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.98497,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,46.15384615384615,1.0,8.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"0-2.0",13.0,"7+",1,44,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 18 20 9,SN81FL,urban,18,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,3.98497,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,46.15384615384615,1.0,8.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"0-2.0",13.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 18 21 6,SN81FL,urban,18,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,3.98497,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,10.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",14.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 19 2 1,SN81FL,urban,19,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,19,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","55","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","3+",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,4.149893,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"0-2.0",17.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 19 3 3,SN81FL,urban,19,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,yes,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,4.149893,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.5,"0-2.0",16.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 19 4 2,SN81FL,urban,19,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","43","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"24","20+",24,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"2",1.0,1.0,no,no,no,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.149893,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,5.0,"0-2.0",10.0,"7+",1,31,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 19 5 5,SN81FL,urban,19,5,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,19,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.149893,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,20.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.25,"0-2.0",17.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 19 7 1,SN81FL,urban,19,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,2,"2",4,"3-5","3-5",1,"1",1.0,0.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"2",<3,"0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.149893,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 19 8 7,SN81FL,urban,19,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.149893,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 19 9 3,SN81FL,urban,19,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","65","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",7.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.149893,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,11.11111111111111,1.0,7.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 19 11 2,SN81FL,urban,19,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","28",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.149893,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 19 11 4,SN81FL,urban,19,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,Yes,Yes,Yes,Yes,Yes,Yes,sometimes,"yes, but not in the last 12 months",often,often,sometimes,often,never,never,never,never,often,often,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","63","60+",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"13","5-14",13,"5-14",25,"20-29","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,4.149893,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",6.0,"0-7",,,,,,,,2,2,3,2,4,6,1,6,9 + 19 14 1,SN81FL,urban,19,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,19,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,sales,sales,more than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","47","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"32","20+",32,"20+",34,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,4.149893,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",9.0,"7+",2,29,wants no more,wants no more,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 19 15 2,SN81FL,urban,19,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent and husband/partner,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,yes,,,pharmacy,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"2","1",yes,4.149893,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 19 17 1,SN81FL,urban,19,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"26",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","4+","52","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",28,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,4.149893,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.25,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 19 18 4,SN81FL,urban,19,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","37","30-59",No,1.0,yes,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,4.149893,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 19 19 2,SN81FL,urban,19,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,4.149893,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",3.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 1 4,SN8BFL,urban,20,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","48","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,35.0,1.0,10.0,"5 and up",10.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.857142857142857,"0-2.0",17.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 20 1 7,SN81FL,urban,20,1,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,more than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"29",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent and husband/partner,someone else,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"1-3","1-3","55","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",23,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.095295,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,40.909090909090914,1.0,15.0,"5 and up",5.0,"5 and up",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.142857142857143,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 20 1 16,SN8BFL,urban,20,1,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","1",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,35.0,1.0,10.0,"5 and up",10.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.857142857142857,"0-2.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 1 17,SN81FL,urban,20,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.095295,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,40.909090909090914,1.0,15.0,"5 and up",5.0,"5 and up",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.142857142857143,"0-2.0",10.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 20 1 18,SN8BFL,urban,20,1,1.0,,,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",28,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,35.0,1.0,10.0,"5 and up",10.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.857142857142857,"0-2.0",17.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 20 2 2,SN8BFL,urban,20,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,20,dakar urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",8,"6+","6+",1,"1",1.0,0.0,male,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,respondent alone,other,respondent alone,respondent alone,"0","4+","54","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.644468,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.6666666666666665,"0-2.0",9.0,"7+",3,22,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 20 2 3,SN81FL,urban,20,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,2,"2 or more",1.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","2",<3,"0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,3.095295,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",20.0,"7+",1,36,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 20 3 2,SN8BFL,urban,20,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",6.0,"4-6","2+","3+",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.644468,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,5.0,"0-2.0",5.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 20 3 7,SN81FL,urban,20,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,alone only,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,1.0,1.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.095295,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,7.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",16.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 20 4 2,SN81FL,urban,20,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,1.0,yes,no,1.0,"yes, child was treated",1.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.095295,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 20 4 2,SN8BFL,urban,20,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,20,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","59","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",33,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5,"0-2.0",0.0,"0-7",2,49,wants in 2+ years,wants after 2+ years,,1.0,no,2,2,3,4,4,4,1,6,9 + 20 5 2,SN81FL,urban,20,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,20,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,Yes,No,Yes,No,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",31,"30+","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.095295,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 20 5 6,SN8BFL,urban,20,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 20 6 1,SN81FL,urban,20,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","41","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.095295,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,3.0,"3-4",6.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 20 6 2,SN8BFL,urban,20,6,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",4,"3-5","3-5",2,"2 or more",1.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","63","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.644468,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 20 6 7,SN81FL,urban,20,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.095295,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,3.0,"3-4",6.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",8.0,"7+",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 20 7 2,SN81FL,urban,20,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,don't know,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.095295,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 7 2,SN8BFL,urban,20,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.644468,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.5,"0-2.0",16.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 20 8 2,SN8BFL,urban,20,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Arabic,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,2.644468,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 20 8 12,SN8BFL,urban,20,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","34","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"18","15-19",16,"15-19",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.644468,1.0,,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 20 8 14,SN8BFL,urban,20,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,20,dakar urbain,1.0,"1","3+",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","57","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",19,<20,"15-19",4.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.644468,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 20 9 1,SN81FL,urban,20,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,3.095295,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,68.75,1.0,10.0,"5 and up",6.0,"5 and up",1.6666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 9 6,SN81FL,urban,20,9,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.095295,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,68.75,1.0,10.0,"5 and up",6.0,"5 and up",1.6666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 9 14,SN81FL,urban,20,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 12 months,,other,other/dk,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.095295,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,68.75,1.0,10.0,"5 and up",6.0,"5 and up",1.6666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 20 10 2,SN81FL,urban,20,10,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"2","1",yes,3.095295,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,4.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",16.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 20 10 5,SN8BFL,urban,20,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","4+","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,5.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",12.0,"7+",1,36,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 20 11 2,SN81FL,urban,20,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Wolof,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.095295,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 12 2,SN81FL,urban,20,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",3,"3-5","3-5",2,"2 or more",1.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","50","30-59",No,1.0,yes,no,0.0,,,,,,,christian,0.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.095295,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",6.0,"0-7",1,29,infecund,declared infecund (respondent or partner(s)),1.0,1.0,no,1,3,1,5,3,3,3,9,6 + 20 13 2,SN81FL,urban,20,13,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","32","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,3.095295,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 20 15 1,SN8BFL,urban,20,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,1.0,female,"13",More than 5 years,Yes,No,Yes,No,No,No,never,never,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,sometimes,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,2.644468,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,1.0,"0-1",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 16 1,SN8BFL,urban,20,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"0","0",yes,2.644468,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,70.0,1.0,4.0,"3-4",6.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.3333333333333335,"0-2.0",8.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 20 17 2,SN8BFL,urban,20,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"1-3","1-3","55","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,12.0,"5 and up",8.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.5555555555555554,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 17 4,SN81FL,urban,20,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,christian,0.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",32,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,3.095295,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 17 6,SN8BFL,urban,20,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,12.0,"5 and up",8.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.5555555555555554,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 17 18,SN8BFL,urban,20,17,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","49","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,12.0,"5 and up",8.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.5555555555555554,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 18 1,SN81FL,urban,20,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","66","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.095295,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,yes,1,3,1,5,3,3,3,9,1 + 20 19 4,SN81FL,urban,20,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,1,"1",1.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,3.095295,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,25.0,1.0,10.0,"5 and up",6.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 20 19 5,SN8BFL,urban,20,19,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","0","44","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,not at all,not at all,1.0,"1","1",yes,2.644468,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,68.42105263157895,1.0,11.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5714285714285716,"0-2.0",16.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 20 19 7,SN81FL,urban,20,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,3.095295,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,25.0,1.0,10.0,"5 and up",6.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 20 19 18,SN8BFL,urban,20,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,20,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,68.42105263157895,1.0,11.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5714285714285716,"0-2.0",16.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 20 20 2,SN8BFL,urban,20,20,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20,dakar urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"25","20+",22,"20+",23,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,2.644468,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,27.27272727272727,1.0,6.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,3.3333333333333335,"0-2.0",11.0,"7+",2,26,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 20 22 1,SN8BFL,urban,20,22,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,20,dakar urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"26","20+",26,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.644468,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 21 1 2,SN8BFL,urban,21,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,other,respondent and husband/partner,"4+","1-3","39","30-59",No,1.0,no,yes,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"29","20+",17,"15-19",17,<20,"15-19",6.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.697938,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.375,"6.1-30",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 21 1 7,SN8BFL,urban,21,1,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","35","30-59",Yes,1.0,no,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.697938,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.375,"6.1-30",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 21 2 4,SN8BFL,urban,21,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"28","20+",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.697938,0.0,0.0,,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.6,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 21 4 1,SN8BFL,urban,21,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,other,respondent and husband/partner,respondent and husband/ partner,other,"1-3","1-3","54","30-59",Yes,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"41","20+",22,"20+",26,"20-29","25-39",6.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,not at all,1.0,"1","1",yes,0.697938,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.25,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 21 5 2,SN81FL,urban,21,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","0","50","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",16,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.879885,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 21 6 1,SN81FL,urban,21,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","30","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,yes,,,relatives/friends,0,1,,0.0,respondent or partner opposed,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.879885,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,1.75,"6.1-30",10.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 21 10 1,SN8BFL,urban,21,10,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,yes,1.0,,,,,,,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.697938,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"6.1-30",6.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 21 11 2,SN8BFL,urban,21,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,professional/technical/managerial,,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,other,husband/partner alone,currently pregnant,other,"0","0","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,no,less than once a week,at least once a week,not at all,1.0,"1","1",yes,0.697938,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,14,"6+",1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,0.42857142857142855,"6.1-30",7.0,"7+",,,,,,,,1,2,1,5,4,1,2,5,7 + 21 14 4,SN8BFL,urban,21,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",19,"15-19",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.697938,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.25,"6.1-30",13.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,2,4,2,4,4,1,7,9 + 21 15 8,SN8BFL,urban,21,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,6,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",16,"15-19",16,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"3",1.0,1.0,don't know,don't know,don't know,less than once a week,less than once a week,less than once a week,1.0,"2","1",yes,0.697938,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,8.0,"5 and up",12.0,"5 and up",1.2,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.142857142857143,"6.1-30",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 21 15 13,SN8BFL,urban,21,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","37","30-59",No,1.0,no,yes,1.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.697938,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,8.0,"5 and up",12.0,"5 and up",1.2,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.142857142857143,"6.1-30",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 21 15 18,SN8BFL,urban,21,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.697938,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,8.0,"5 and up",12.0,"5 and up",1.2,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.142857142857143,"6.1-30",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 21 16 8,SN81FL,urban,21,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,jointly only,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,husband/partner alone,respondent alone,other,"0","1-3","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",19,"15-19",23,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.879885,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,4,4,1,7,9 + 21 17 7,SN8BFL,urban,21,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","28",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",15,"15-19",17,<20,"15-19",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"0","0",yes,0.697938,1.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.6,"6.1-30",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 21 18 4,SN8BFL,urban,21,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","43","30-59",No,1.0,no,yes,1.0,,,,,,,christian,0.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","3","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.697938,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,4.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,0.25,"6.1-30",15.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,3,1,5,3,3,3,9,1 + 21 20 7,SN8BFL,urban,21,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",17,"15-19",21,"20-29","20-24",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.697938,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",16.0,"7+",2,34,unsure timing,undecided,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 21 22 2,SN81FL,urban,21,22,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,21,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,more than him,jointly only,alone only,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","51","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Diola,"25","20+",19,"15-19",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.879885,0.0,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",12.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,2,1 + 29 1 2,SN81FL,urban,29,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",18,"15-19",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.547273,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 29 2 8,SN81FL,urban,29,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,,"4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.547273,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.625,"6.1-30",12.0,"7+",1,21,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 29 2 11,SN81FL,urban,29,2,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","45","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"18","15-19",18,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.547273,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.625,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 29 2 15,SN81FL,urban,29,2,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,Wolof,"17","15-19",17,"15-19",23,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.547273,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.625,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,1,4 + 29 3 2,SN8BFL,urban,29,3,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","35","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"31","20+",15,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.575118,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 29 4 2,SN8BFL,urban,29,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.575118,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,8.0,"6.1-30",13.0,"7+",0,,,,,,yes,1,3,2,3,2,2,8,4,10 + 29 4 7,SN8BFL,urban,29,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",15,"15-19",17,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.575118,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,8.0,"6.1-30",13.0,"7+",0,,,,,,yes,1,3,2,3,2,2,8,4,10 + 29 5 3,SN8BFL,urban,29,5,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",4,"2 or more",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",14,"5-14",15,<20,"15-19",8.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.575118,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"6.1-30",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 29 5 7,SN8BFL,urban,29,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","49","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"29","20+",29,"20+",31,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.575118,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"6.1-30",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 29 5 11,SN8BFL,urban,29,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"13","5-14",13,"5-14",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.575118,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"6.1-30",11.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 29 6 2,SN81FL,urban,29,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,2,"2 or more",1.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"4+","1-3","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"37","20+",18,"15-19",23,"20-29","20-24",4.0,"4-6","2+","3+",no one,TBA / no one,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.547273,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",9.0,"7+",1,21,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,2,1,5,4,1,2,5,7 + 29 6 2,SN8BFL,urban,29,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,no,no,0.0,,,,,,,christian,0.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"33","20+",16,"15-19",21,"20-29","20-24",2.0,"1-3","2+","3+",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.575118,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",11.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,2,1 + 29 8 2,SN8BFL,urban,29,8,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"27","20+",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.575118,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",6.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 29 9 2,SN81FL,urban,29,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,29,ziquinchor urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",0,"0",<3,1,"1",1.0,0.0,male,not partnered,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"18","15-19",,Inconsistent or don't know,15,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.547273,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,0.0,,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 29 11 9,SN81FL,urban,29,11,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,29,ziquinchor urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Mandinque,"28","20+",28,"20+",31,"30+","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.547273,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 29 11 10,SN8BFL,urban,29,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",1.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.575118,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,9.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"6.1-30",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 29 12 1,SN8BFL,urban,29,12,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,jointly only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,female,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.575118,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",12.0,"7+",2,35,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,3,2,3,5,2,8,4,10 + 29 12 5,SN81FL,urban,29,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,christian,0.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"33","20+",15,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.547273,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"6.1-30",15.0,"7+",1,23,wants no more,wants no more,1.0,0.0,yes,1,2,1,5,4,1,2,5,7 + 29 13 2,SN8BFL,urban,29,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,Yes,Yes,No,No,No,No,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.575118,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",6.0,"0-7",,,,,,,,2,2,3,2,4,6,1,6,9 + 29 13 5,SN81FL,urban,29,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",19,"15-19",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.547273,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,1.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.6,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 29 16 1,SN81FL,urban,29,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,29,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",5,"3-5","3-5",3,"2 or more",1.0,1.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","59","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,christian,0.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",16,"15-19",17,<20,"15-19",8.0,"7+","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.547273,0.0,0.0,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",7.0,"7+",0,25,,,,,no,2,1,3,4,1,7,7,3,8 + 29 16 2,SN81FL,urban,29,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,christian,0.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"1","1",yes,0.547273,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",7.0,"7+",0,25,,,,,no,2,2,4,2,6,5,5,7,2 + 29 16 2,SN8BFL,urban,29,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","48","30-59",No,1.0,no,yes,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.575118,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",9.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,1,2,1,2,7,6,3,5 + 29 17 2,SN8BFL,urban,29,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"1-3","0","53","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.575118,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"6.1-30",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 29 18 2,SN81FL,urban,29,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,christian,0.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,less than once a week,1.0,"1","1",yes,0.547273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",10.0,"7+",1,29,wants no more,wants no more,0.0,0.0,no,2,2,3,4,4,4,1,6,9 + 29 18 11,SN8BFL,urban,29,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","42","30-59",No,1.0,yes,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.575118,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,43.47826086956522,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.8333333333333335,"6.1-30",14.0,"7+",1,35,wants within 2 years,wants within 2 years,,1.0,yes,2,2,4,2,6,5,5,7,2 + 29 19 2,SN8BFL,urban,29,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","50","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Diola,"25","20+",15,"15-19",27,"20-29","25-39",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"0","0",yes,0.575118,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.75,"6.1-30",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 29 19 5,SN81FL,urban,29,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,jointly only,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"0",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","36","30-59",No,0.0,no,no,1.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.547273,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,45.45454545454545,1.0,8.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,4.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"6.1-30",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 29 19 6,SN8BFL,urban,29,19,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,29,ziquinchor urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Worked in the past year,0.0,Seasonal,no partner,no partner,not working,not working,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"23","20+",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","3+",no one,TBA / no one,have another,,"6","6+","5+",not partnered,yes,,,relatives/friends,1,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.575118,1.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.75,"6.1-30",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,1,4 + 29 20 1,SN8BFL,urban,29,20,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,jointly only,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","49","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",15,"15-19",15,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.575118,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",13.0,"7+",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 29 21 2,SN8BFL,urban,29,21,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.575118,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,69.23076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6,"6.1-30",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 29 21 6,SN8BFL,urban,29,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,29,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","47","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"29","20+",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"4",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.575118,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,69.23076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6,"6.1-30",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 30 1 2,SN81FL,urban,30,1,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","51","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"13","5-14",13,"5-14",17,<20,"15-19",2.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.406208,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"6.1-30",10.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 30 1 2,SN8BFL,urban,30,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,No,Yes,No,No,No,No,sometimes,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","44","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"25","20+",20,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.634846,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,80.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"6.1-30",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 30 2 2,SN8BFL,urban,30,2,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent alone,husband/partner alone,respondent alone,husband/ partner alone,husband/partner alone,"0","1-3","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,yes,,,relatives/friends,0,1,,,,"5",1.0,1.0,yes,,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.634846,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",15.0,"7+",1,23,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 30 3 4,SN8BFL,urban,30,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,jointly only,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.634846,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,64.70588235294117,1.0,12.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.125,"6.1-30",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 30 3 9,SN8BFL,urban,30,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"42","20+",18,"15-19",33,"30+","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.634846,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,64.70588235294117,1.0,12.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.125,"6.1-30",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 30 5 4,SN81FL,urban,30,5,0.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"32","20+",32,"20+",33,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"3","1",yes,0.406208,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"6.1-30",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 30 6 4,SN81FL,urban,30,6,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.406208,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.75,"6.1-30",6.0,"0-7",0,27,,,,,no,2,2,3,4,4,4,1,6,9 + 30 7 3,SN81FL,urban,30,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"41","20+",41,"20+",42,"30+","40+",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.406208,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4444444444444446,"6.1-30",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 30 7 3,SN8BFL,urban,30,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,No,Yes,No,No,No,No,sometimes,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,0.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",17,"15-19",19,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.634846,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.95652173913044,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2857142857142856,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 30 7 5,SN81FL,urban,30,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"32","20+",32,"20+",32,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"2",<3,"0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.406208,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4444444444444446,"6.1-30",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 30 7 9,SN8BFL,urban,30,7,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,other,husband/partner alone,respondent alone,other,"0","1-3","47","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.634846,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.95652173913044,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2857142857142856,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 30 7 12,SN81FL,urban,30,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,jointly only,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","51","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,christian,0.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",25,"20+",33,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.406208,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4444444444444446,"6.1-30",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 30 7 15,SN8BFL,urban,30,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","57","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.634846,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.95652173913044,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2857142857142856,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 30 7 20,SN8BFL,urban,30,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,husband/partner alone,husband/ partner alone,other,"0","0","35","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",13,"5-14",13,<20,<15,1.0,"1-3","1","2",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.634846,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.95652173913044,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2857142857142856,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 30 9 2,SN81FL,urban,30,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","59","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",,Inconsistent or don't know,21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,no,not at all,not at all,less than once a week,1.0,"2","1",yes,0.406208,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"6.1-30",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 30 9 2,SN8BFL,urban,30,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","52","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.634846,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,0.0,0.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 30 9 5,SN81FL,urban,30,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",20,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.406208,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 30 10 2,SN81FL,urban,30,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.406208,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,0.0,0.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",12.0,"7+",1,36,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,2,3 + 30 11 1,SN81FL,urban,30,11,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,yes,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"39","20+",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.406208,0.0,,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 30 12 2,SN81FL,urban,30,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"35","20+",35,"20+",38,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","2",<3,"0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.406208,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,1.0,No,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 30 12 2,SN8BFL,urban,30,12,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","32","30-59",No,1.0,yes,no,1.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"28","20+",16,"15-19",23,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.634846,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",14.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,2,3 + 30 12 11,SN81FL,urban,30,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.406208,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,1.0,No,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",18.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 30 12 14,SN81FL,urban,30,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"24","20+",24,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,less than once a week,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.406208,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,1.0,No,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",18.0,"7+",1,24,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 30 13 8,SN81FL,urban,30,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"0","0",no,0.406208,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,54.54545454545454,1.0,6.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"6.1-30",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 30 14 2,SN8BFL,urban,30,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"24","20+",16,"15-19",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.634846,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.9166666666666667,"6.1-30",16.0,"7+",1,37,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 30 14 8,SN8BFL,urban,30,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.634846,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.9166666666666667,"6.1-30",16.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 30 14 15,SN8BFL,urban,30,14,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.634846,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.9166666666666667,"6.1-30",16.0,"7+",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 30 16 1,SN81FL,urban,30,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","95","60+",Yes,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.406208,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",7.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,4.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8,"6.1-30",3.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 30 16 4,SN81FL,urban,30,16,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,30,ziquinchor urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",0,"0",<3,1,"1",1.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","95","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.406208,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",7.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,4.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8,"6.1-30",3.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 30 17 4,SN8BFL,urban,30,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,30,ziquinchor urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,jointly only,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,Yes,Yes,No,Yes,No,Yes,"yes, but not in the last 12 months","yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","3+",no one,TBA / no one,have another,,"3","3-5","0-4",not partnered,no,,,condom not used,1,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.634846,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",17.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 30 18 2,SN8BFL,urban,30,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","62","60+",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Poular,"15","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.634846,1.0,0.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.666666666666667,"6.1-30",9.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 30 18 6,SN81FL,urban,30,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",20,"20+",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.406208,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,4,1,2,5,7 + 30 18 12,SN8BFL,urban,30,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"0","0",no,0.634846,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.666666666666667,"6.1-30",9.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 30 18 14,SN8BFL,urban,30,18,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",,Inconsistent or don't know,14,<20,<15,3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,don't know,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.634846,1.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.666666666666667,"6.1-30",9.0,"7+",0,,,,,,no,1,1,3,3,5,7,8,4,10 + 30 19 2,SN8BFL,urban,30,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.634846,1.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",0.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 30 20 1,SN8BFL,urban,30,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","62","60+",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.634846,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.5,"6.1-30",5.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 30 21 2,SN81FL,urban,30,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,30,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,jointly only,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Wolof,"18","15-19",18,"15-19",27,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.406208,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",6.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 31 1 2,SN81FL,urban,31,1,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,31,ziquinchor urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","51","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,other,"17","15-19",17,"15-19",28,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.627174,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"6.1-30",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 31 1 5,SN81FL,urban,31,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - employee,agricultural,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","51","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"20","20+",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.627174,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 31 2 1,SN8BFL,urban,31,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.532254,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",6.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 31 3 2,SN8BFL,urban,31,3,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","42","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",16,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.532254,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",6.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 31 4 2,SN81FL,urban,31,4,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,31,ziquinchor urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,jointly only,jointly only,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,currently pregnant,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"25","20+",18,"15-19",22,"20-29","20-24",3.0,"1-3","2+","3+",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",not partnered,no,,,condom not used,1,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.627174,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 31 4 6,SN8BFL,urban,31,4,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",17,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.532254,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,81.81818181818183,1.0,5.0,"5 and up",6.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"6.1-30",10.0,"7+",1,30,wants in 2+ years,wants after 2+ years,0.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 31 4 9,SN8BFL,urban,31,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.532254,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,81.81818181818183,1.0,5.0,"5 and up",6.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"6.1-30",10.0,"7+",0,,never had sex,never had sex,,,yes,2,2,3,4,4,4,1,6,9 + 31 5 7,SN8BFL,urban,31,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.532254,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"6.1-30",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 31 6 10,SN81FL,urban,31,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","26",under 30,No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,yes,,,relatives/friends,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.627174,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,69.23076923076923,1.0,10.0,"5 and up",3.0,"3-4",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8571428571428572,"6.1-30",12.0,"7+",0,23,,,,,no,2,2,4,2,6,5,5,7,2 + 31 7 2,SN81FL,urban,31,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",16,"15-19",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,no,no,never circumcised,less than once a week,not at all,less than once a week,1.0,"2","1",yes,0.627174,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",14.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 31 7 8,SN81FL,urban,31,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,1.0,1.0,0.0,31,ziquinchor urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 12 months,,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",4,"3-5","3-5",2,"2 or more",1.0,1.0,male,"31",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",7.0,"7+","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.627174,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",14.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 31 8 1,SN8BFL,urban,31,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","49","30-59",No,1.0,yes,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,less than once a week,1.0,"1","1",yes,0.532254,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,1.0,"0-1",3.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",1.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 31 9 1,SN8BFL,urban,31,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,household and domestic,service/domestic,Family,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","47","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.532254,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 31 9 2,SN81FL,urban,31,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",,Inconsistent or don't know,16,<20,"15-19",7.0,"7+","2+","3+",no one,TBA / no one,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.627174,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,5.0,"6.1-30",11.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 31 11 7,SN81FL,urban,31,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.627174,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",18.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 31 11 11,SN81FL,urban,31,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,0.0,,,,not at all,not at all,not at all,0.0,"2","1",yes,0.627174,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",18.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 31 12 2,SN81FL,urban,31,12,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","49","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Mandinque,"28","20+",16,"15-19",19,<20,"15-19",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"0","0",no,0.627174,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4285714285714284,"6.1-30",13.0,"7+",1,20,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 31 12 4,SN81FL,urban,31,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"22","20+",21,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,"2","1",yes,0.627174,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4285714285714284,"6.1-30",13.0,"7+",1,21,wants in 2+ years,wants after 2+ years,,1.0,no,2,2,4,2,6,5,5,7,2 + 31 13 2,SN8BFL,urban,31,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,1.0,1.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",32,"30+","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.532254,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"6.1-30",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 31 13 7,SN8BFL,urban,31,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,31,ziquinchor urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"33","20+",16,"15-19",35,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,don't know,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.532254,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 31 14 2,SN8BFL,urban,31,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.532254,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 31 14 3,SN81FL,urban,31,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.627174,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",0.6,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,1.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,5.5,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 31 15 1,SN8BFL,urban,31,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"13","5-14",13,"5-14",14,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"1",1.0,1.0,no,no,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.532254,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",1.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 31 15 2,SN81FL,urban,31,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"2","1",yes,0.627174,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,71.42857142857143,1.0,2.0,"2",5.0,"5 and up",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 31 16 2,SN81FL,urban,31,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,jointly only,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,other,husband/partner alone,respondent alone,other,"0","1-3","50","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,less than once a week,1.0,"1","1",yes,0.627174,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"6.1-30",15.0,"7+",0,,,,,,yes,2,2,4,2,6,5,5,7,2 + 31 17 5,SN81FL,urban,31,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","46","30-59",Yes,1.0,no,yes,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",32,"30+","25-39",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.627174,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,33.33333333333333,1.0,6.0,"5 and up",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 31 17 5,SN8BFL,urban,31,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,31,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,1.0,female,"26",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","49","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.532254,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5714285714285714,"6.1-30",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 31 18 2,SN81FL,urban,31,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"28","20+",17,"15-19",27,"20-29","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,yes,,,relatives/friends,0,1,,0.0,not having/infrequent sex,"2",1.0,1.0,no,yes,never circumcised,less than once a week,not at all,not at all,1.0,"2","1",yes,0.627174,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",11.0,"7+",1,33,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 31 18 2,SN8BFL,urban,31,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",29,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.532254,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.0,"6.1-30",17.0,"7+",1,45,wants within 2 years,wants within 2 years,0.0,1.0,yes,1,3,1,5,3,3,3,9,1 + 31 19 4,SN81FL,urban,31,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","50","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,christian,0.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",,Inconsistent or don't know,23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.627174,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"6.1-30",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 31 19 7,SN8BFL,urban,31,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,christian,0.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.532254,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,9.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.75,"6.1-30",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 31 20 1,SN8BFL,urban,31,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,other,"27","20+",22,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.532254,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.75,"6.1-30",3.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 31 20 2,SN81FL,urban,31,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.627174,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",10.0,"7+",2,24,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 31 20 5,SN8BFL,urban,31,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.532254,1.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.75,"6.1-30",3.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 31 21 6,SN81FL,urban,31,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,christian,0.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"32","20+",,Inconsistent or don't know,27,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.627174,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",15.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 31 22 2,SN81FL,urban,31,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,31,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","48","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.627174,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,66.66666666666666,1.0,5.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",11.0,"7+",1,44,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 32 1 4,SN8BFL,urban,32,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,someone else,someone else,respondent alone,someone else,"0","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,no,yes,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.710112,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,6.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 32 1 5,SN81FL,urban,32,1,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,jointly only,does not own,3,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"28",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","63","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.717224,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,10.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 32 1 6,SN81FL,urban,32,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,other,husband/partner alone,respondent alone,other,"0","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.717224,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,10.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",11.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 32 2 5,SN8BFL,urban,32,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.710112,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,57.14285714285714,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 32 3 1,SN81FL,urban,32,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,jointly only,2,"2",4,"3-5","3-5",1,"1",1.0,1.0,female,"10",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"23","20+",15,"15-19",15,<20,"15-19",5.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.717224,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 32 4 3,SN8BFL,urban,32,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,husband/partner alone,respondent alone,other,"0","1-3","50","30-59",Yes,1.0,yes,yes,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.710112,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,7.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"6.1-30",17.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 32 5 6,SN8BFL,urban,32,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.710112,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,62.5,1.0,6.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",18.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 32 6 2,SN8BFL,urban,32,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,jointly only,does not own,0,"0",7,"6+","6+",1,"1",1.0,1.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","54","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.710112,0.0,,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.1666666666666667,"6.1-30",12.0,"7+",1,28,wants no more,wants no more,,0.0,no,1,3,1,5,3,3,3,2,3 + 32 6 13,SN81FL,urban,32,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,not working,not working,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","95","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.717224,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",14.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 32 7 4,SN81FL,urban,32,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,32,ziquinchor urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,jointly only,0,"0",3,"3-5","3-5",1,"1",1.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","66","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"20","20+",,Inconsistent or don't know,20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.717224,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.142857142857143,"6.1-30",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 32 7 4,SN8BFL,urban,32,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.710112,1.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8888888888888888,"6.1-30",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 32 8 2,SN81FL,urban,32,8,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,32,ziquinchor urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",0,"0",<3,3,"2 or more",1.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"0","0",yes,0.717224,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",2,29,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 32 8 2,SN8BFL,urban,32,8,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",16,"15-19",22,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.710112,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",15.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,2,1 + 32 8 3,SN81FL,urban,32,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.717224,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",2,29,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 32 8 6,SN81FL,urban,32,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.717224,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",1,21,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 32 9 2,SN81FL,urban,32,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",1,"1-2",<3,1,"1",1.0,1.0,female,"4",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,0.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"36","20+",,Inconsistent or don't know,34,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.717224,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.375,"6.1-30",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 32 9 4,SN81FL,urban,32,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.717224,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.375,"6.1-30",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 32 9 5,SN8BFL,urban,32,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,respondent and husband/partner,respondent and husband/ partner,other,"1-3","0","28",under 30,No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,1.0,0.0,1.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.710112,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",2.0,"1-2",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.25,"6.1-30",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 32 10 2,SN8BFL,urban,32,10,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","44","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.710112,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.5,"6.1-30",16.0,"7+",2,38,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 32 10 5,SN81FL,urban,32,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","29",under 30,No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.717224,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,71.42857142857143,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,8.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",2.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 32 11 2,SN8BFL,urban,32,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,jointly only,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"30",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,christian,0.0,no education,no education,some education,0.0,primary,yes,education,some education,Diola,"16","15-19",25,"20+",28,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.710112,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,42.857142857142854,1.0,8.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.8,"6.1-30",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 32 12 6,SN8BFL,urban,32,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","35","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.710112,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",3.0,"3-4",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.7142857142857142,"6.1-30",21.0,"7+",1,28,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 32 12 9,SN8BFL,urban,32,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,alone only,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.710112,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",3.0,"3-4",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.7142857142857142,"6.1-30",21.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 32 13 2,SN81FL,urban,32,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.717224,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",0.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 32 13 2,SN8BFL,urban,32,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,christian,0.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",20,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.710112,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 32 14 4,SN81FL,urban,32,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,both alone and jointly,both alone and jointly,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,no,no,0.0,,,,,,,christian,0.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.717224,1.0,,,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,54.54545454545454,1.0,8.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2,"6.1-30",9.0,"7+",1,24,wants no more,wants no more,0.0,0.0,no,1,3,1,5,3,3,3,9,1 + 32 15 1,SN81FL,urban,32,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",Yes,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"30","20+",20,"20+",23,"20-29","20-24",2.0,"1-3","2+","3+",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.717224,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"6.1-30",1.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 32 15 2,SN8BFL,urban,32,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",2,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.710112,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 32 17 8,SN8BFL,urban,32,17,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.710112,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7142857142857142,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,1 + 32 18 3,SN81FL,urban,32,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,0.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"29","20+",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.717224,1.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",0.0,"0-7",1,,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 32 19 5,SN81FL,urban,32,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"0",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","33","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"32","20+",18,"15-19",19,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.717224,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,7.0,"5 and up",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.4,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 32 19 7,SN8BFL,urban,32,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","28",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"2","1",yes,0.710112,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 32 19 12,SN8BFL,urban,32,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"29","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.710112,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 32 21 4,SN81FL,urban,32,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.717224,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.3333333333333335,"6.1-30",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 33 2 7,SN8BFL,urban,33,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"28","20+",16,"15-19",25,"20-29","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.590223,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.6666666666666665,"6.1-30",9.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 33 3 3,SN81FL,urban,33,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",1,"1-2",<3,3,"2 or more",1.0,1.0,female,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,christian,0.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",26,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"0","0",no,0.738986,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"6.1-30",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 33 4 2,SN81FL,urban,33,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.738986,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",2.0,"0-7",1,30,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 33 4 2,SN8BFL,urban,33,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",15,"15-19",15,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.590223,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",10.0,"7+",1,24,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 33 5 3,SN8BFL,urban,33,5,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"9",More than 5 years,No,Yes,No,No,No,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,yes,1.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",17,"15-19",30,"30+","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.590223,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,25.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 33 6 1,SN8BFL,urban,33,6,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,jointly only,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,other,husband/partner alone,respondent alone,other,"0","1-3","51","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",15,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.590223,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",13.0,"7+",1,20,wants within 2 years,wants within 2 years,1.0,1.0,no,1,2,1,5,4,1,2,5,7 + 33 7 2,SN81FL,urban,33,7,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,yes,not at all,at least once a week,less than once a week,1.0,"0","0",yes,0.738986,0.0,0.0,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"6.1-30",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 33 7 4,SN8BFL,urban,33,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,33,ziquinchor urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.590223,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,8.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 33 9 2,SN81FL,urban,33,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,christian,0.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",17,"15-19",25,"20-29","25-39",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.738986,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,5.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"6.1-30",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 33 9 20,SN8BFL,urban,33,9,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.590223,1.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 33 10 2,SN8BFL,urban,33,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","45","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,christian,0.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"30","20+",13,"5-14",14,<20,<15,5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.590223,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",9.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,1,5,6,4,8,8 + 33 14 2,SN81FL,urban,33,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","1-3","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",27,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.738986,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"6.1-30",16.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 33 16 2,SN81FL,urban,33,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,jointly only,jointly only,0,"0",2,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","40","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"26","20+",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.738986,1.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,11.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",16.0,"7+",1,35,wants within 2 years,wants within 2 years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 33 17 3,SN81FL,urban,33,17,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,jointly only,does not own,0,"0",1,"1-2",<3,2,"2 or more",1.0,0.0,male,"19",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","54","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"24","20+",15,"15-19",15,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.738986,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 33 18 2,SN81FL,urban,33,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","50","30-59",No,1.0,no,yes,0.0,"no, child wasn't treated",0.0,1.0,0.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.738986,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"6.1-30",12.0,"7+",1,32,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 33 19 1,SN81FL,urban,33,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.738986,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,3.0,"3-4",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.5,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 33 20 4,SN81FL,urban,33,20,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,no,no,0.0,,,,,,,christian,0.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.738986,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",12.0,"7+",1,23,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,1,5,3,3,3,9,1 + 33 22 2,SN81FL,urban,33,22,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,33,ziquinchor urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,skilled manual,manual,more than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","47","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.738986,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,1.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"6.1-30",10.0,"7+",1,31,wants no more,wants no more,,0.0,no,1,3,1,5,3,3,3,9,1 + 35 1 2,SN81FL,urban,35,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","15",under 30,No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"14","5-14",14,"5-14",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.61568,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,25.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",12.0,"7+",,,,,,,,1,1,2,1,5,7,6,4,5 + 35 1 2,SN8BFL,urban,35,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Family,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","34","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"2","1",yes,0.8872,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,62.5,1.0,5.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 3 1,SN81FL,urban,35,3,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,35,diourbel urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,alone only,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,Yes,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,respondent alone,other,respondent alone,respondent alone,other,"0","4+","15",under 30,Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.61568,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 35 3 3,SN8BFL,urban,35,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,someone else,someone else,husband/ partner alone,someone else,"0","1-3","42","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.8872,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,56.52173913043478,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.875,"2.1-6.0",15.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 35 3 10,SN8BFL,urban,35,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.8872,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,56.52173913043478,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.875,"2.1-6.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 3 14,SN8BFL,urban,35,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,35,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,Yes,Yes,No,Yes,No,No,sometimes,never,sometimes,sometimes,often,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.8872,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,56.52173913043478,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.875,"2.1-6.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 4 2,SN81FL,urban,35,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",2,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.61568,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",0.0,0.0,No food cooked in house,Other,,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 35 4 4,SN8BFL,urban,35,4,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","49","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.8872,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 35 5 2,SN81FL,urban,35,5,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,35,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",8,"6+","6+",0,"0",0.0,0.0,male,"27",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,husband/ partner alone,husband/partner alone,"1-3","1-3","58","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.61568,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.75,1.0,7.0,"5 and up",9.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 35 5 5,SN8BFL,urban,35,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","54","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"36","20+",36,"20+",37,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.8872,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.58823529411765,1.0,10.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 5 8,SN8BFL,urban,35,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.8872,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.58823529411765,1.0,10.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 35 5 9,SN81FL,urban,35,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.61568,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.75,1.0,7.0,"5 and up",9.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"2.1-6.0",10.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 35 6 2,SN8BFL,urban,35,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,35,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",7,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","53","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"20","20+",20,"20+",22,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.8872,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",11.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 35 6 5,SN81FL,urban,35,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","34","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.61568,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,12.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"2.1-6.0",16.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 35 6 10,SN8BFL,urban,35,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,35,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"28","20+",28,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.8872,1.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",11.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 35 6 13,SN8BFL,urban,35,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",1,"1",1.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",,Inconsistent or don't know,25,"20-29","25-39",4.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.8872,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",11.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 35 7 2,SN81FL,urban,35,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","51","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"28","20+",22,"20+",22,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.61568,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,44.44444444444444,1.0,5.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 7 2,SN8BFL,urban,35,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.8872,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.2,"2.1-6.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 35 7 7,SN81FL,urban,35,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,35,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","49","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"30","20+",30,"20+",32,"30+","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.61568,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,44.44444444444444,1.0,5.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 35 7 7,SN8BFL,urban,35,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.8872,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.2,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 8 1,SN8BFL,urban,35,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.8872,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 35 8 5,SN81FL,urban,35,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,jointly only,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,0.61568,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,30.0,1.0,5.0,"5 and up",5.0,"5 and up",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.3333333333333335,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 35 8 8,SN81FL,urban,35,8,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","35","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.61568,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,30.0,1.0,5.0,"5 and up",5.0,"5 and up",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.3333333333333335,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 35 9 2,SN8BFL,urban,35,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,Yes,Yes,Yes,No,No,No,never,never,sometimes,never,"yes, but not in the last 12 months",never,never,never,sometimes,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.8872,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",18.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 35 9 3,SN81FL,urban,35,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",35,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.61568,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,68.18181818181817,1.0,12.0,"5 and up",8.0,"5 and up",0.625,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4444444444444446,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 9 7,SN81FL,urban,35,9,1.0,,,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.61568,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,68.18181818181817,1.0,12.0,"5 and up",8.0,"5 and up",0.625,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4444444444444446,"2.1-6.0",11.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 35 9 12,SN81FL,urban,35,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,5,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",18,"15-19",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.61568,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,68.18181818181817,1.0,12.0,"5 and up",8.0,"5 and up",0.625,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4444444444444446,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 35 9 15,SN81FL,urban,35,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,5,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"25",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,other,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","53","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Wolof,"16","15-19",16,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.61568,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,68.18181818181817,1.0,12.0,"5 and up",8.0,"5 and up",0.625,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4444444444444446,"2.1-6.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 35 10 3,SN81FL,urban,35,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","37","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"3","1",yes,0.61568,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,42.857142857142854,1.0,3.0,"3-4",4.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"2.1-6.0",16.0,"7+",1,26,wants no more,wants no more,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 35 11 3,SN81FL,urban,35,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,2.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 12 months,,services,service/domestic,less than him,does not own,does not own,4,"3+",10,"6+","6+",1,"1",1.0,1.0,female,"27",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","1-3","47","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",11.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.61568,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",11.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.333333333333333,"2.1-6.0",6.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 35 11 3,SN8BFL,urban,35,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,1.0,male,"17",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","47","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",15,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.8872,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",6.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 35 11 10,SN81FL,urban,35,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,35,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",7,"6+","6+",1,"1",1.0,1.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"2","1",yes,0.61568,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",11.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.333333333333333,"2.1-6.0",6.0,"0-7",,,,,,,,1,1,2,1,5,7,6,4,5 + 35 12 4,SN81FL,urban,35,12,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",8,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",8.0,"7+","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.61568,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,63.1578947368421,1.0,11.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.7272727272727273,"2.1-6.0",12.0,"7+",2,27,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 35 12 11,SN81FL,urban,35,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.61568,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,63.1578947368421,1.0,11.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.7272727272727273,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,1,5,6,4,8,8 + 35 13 2,SN8BFL,urban,35,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,35,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.8872,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,22.22222222222222,1.0,5.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.0,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 13 3,SN81FL,urban,35,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","36","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.61568,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,64.28571428571429,1.0,9.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.666666666666667,"2.1-6.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 13 6,SN8BFL,urban,35,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,35,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,unskilled manual,manual,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"23","20+",23,"20+",26,"20-29","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.8872,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,22.22222222222222,1.0,5.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.0,"2.1-6.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 35 14 2,SN81FL,urban,35,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,5,"3+",7,"6+","6+",3,"2 or more",1.0,0.0,male,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",10.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.61568,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,64.0,1.0,9.0,"5 and up",11.0,"5 and up",0.8333333333333334,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 35 14 4,SN8BFL,urban,35,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,professional/technical/managerial,,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","58","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,Wolof,"27","20+",27,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.8872,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"2.1-6.0",15.0,"7+",1,27,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 35 14 9,SN81FL,urban,35,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","38","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",,Inconsistent or don't know,15,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.61568,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,64.0,1.0,9.0,"5 and up",11.0,"5 and up",0.8333333333333334,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 35 14 15,SN81FL,urban,35,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,5,"3+",6,"6+","6+",1,"1",1.0,1.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",13,<20,<15,7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.61568,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,64.0,1.0,9.0,"5 and up",11.0,"5 and up",0.8333333333333334,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,1,5,6,4,8,8 + 35 15 2,SN81FL,urban,35,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,35,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.61568,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,6.0,"5 and up",7.0,"5 and up",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 15 2,SN8BFL,urban,35,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","41","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.8872,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,1.0,0.0,,,1.0,0.0,1.0,1.0,Yes,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,6.0,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 35 15 6,SN81FL,urban,35,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,35,diourbel urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,1.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.61568,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,6.0,"5 and up",7.0,"5 and up",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6,"2.1-6.0",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 35 16 4,SN81FL,urban,35,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","26",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.61568,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,10.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"2.1-6.0",13.0,"7+",1,25,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 35 18 2,SN8BFL,urban,35,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"1","1",yes,0.8872,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,50.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,1.0,0.0,,,1.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,4.0,"2.1-6.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 19 1,SN8BFL,urban,35,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",2,"1-2",<3,2,"2 or more",1.0,1.0,female,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent alone,respondent and husband/partner,someone else,respondent alone,respondent and husband/partner,"1-3","1-3","45","30-59",No,0.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.8872,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,4.0,"2.1-6.0",2.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 35 19 2,SN81FL,urban,35,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,35,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","57","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"33","20+",33,"20+",34,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.61568,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,20.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"2.1-6.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 35 20 2,SN8BFL,urban,35,20,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",other/TBA,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.8872,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,1.0,1.0,1.0,3.0,1.0,0.0,1.0,1.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"2.1-6.0",1.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 35 21 2,SN81FL,urban,35,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","50","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",24,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.61568,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,30.76923076923077,1.0,6.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6,"2.1-6.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 35 22 3,SN81FL,urban,35,22,0.0,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","31","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.61568,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 38 1 7,SN8BFL,urban,38,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,christian,0.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",16,"15-19",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.606399,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 38 2 7,SN81FL,urban,38,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","43","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.630877,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,64.28571428571429,1.0,9.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.8,"2.1-6.0",9.0,"7+",1,35,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 38 3 2,SN8BFL,urban,38,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"24",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.606399,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",6.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 38 3 5,SN81FL,urban,38,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"7",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 38 3 8,SN81FL,urban,38,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,38,diourbel urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,3,"3+",0,"0",<3,1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","15",under 30,Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.630877,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 38 5 7,SN8BFL,urban,38,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,0,"0",3,"3-5","3-5",2,"2 or more",1.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","45","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,sterilized/infecund,does not want more kids,"6","6+","5+",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.606399,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,1.0,0.0,,,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 6 2,SN8BFL,urban,38,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","55","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.606399,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,46.15384615384615,1.0,7.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"2.1-6.0",8.0,"7+",1,26,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 38 6 3,SN81FL,urban,38,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","39","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 6 9,SN8BFL,urban,38,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","42","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.606399,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,46.15384615384615,1.0,7.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"2.1-6.0",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 38 7 1,SN8BFL,urban,38,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,more than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,0.0,female,"17",More than 5 years,No,Yes,Yes,Yes,Yes,Yes,never,never,"yes, but not in the last 12 months",never,never,never,never,never,sometimes,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","49","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",16,"15-19",20,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,less than once a week,1.0,"1","1",yes,0.606399,0.0,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,5.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 38 7 3,SN81FL,urban,38,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,38,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,12,"3+",0,"0",<3,1,"1",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","48","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"9","5-14",9,"5-14",19,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.630877,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",9.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.4285714285714284,"2.1-6.0",10.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 38 7 7,SN81FL,urban,38,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,12,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.630877,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",9.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.4285714285714284,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 7 18,SN81FL,urban,38,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,12,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",9.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.4285714285714284,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 7 28,SN81FL,urban,38,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,don't know,does not own,does not own,12,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.630877,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",9.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.4285714285714284,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 7 32,SN81FL,urban,38,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,12,"3+",5,"3-5","3-5",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",30,"30+","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",9.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.4285714285714284,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 7 40,SN81FL,urban,38,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,1.0,1.0,0.0,"2",1.0,HW did not discuss FP,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,12,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,other,husband/partner alone,respondent and husband/partner,husband/ partner alone,husband/partner alone,"1-3","1-3","39","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.630877,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",9.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.4285714285714284,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 8 2,SN81FL,urban,38,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",1,"1-2",<3,1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","62","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",35,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.630877,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",6.0,"0-7",1,43,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 38 8 2,SN8BFL,urban,38,8,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","44","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.606399,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,9.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.25,"2.1-6.0",12.0,"7+",2,25,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 38 8 8,SN8BFL,urban,38,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.606399,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,9.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.25,"2.1-6.0",12.0,"7+",2,25,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 38 8 14,SN8BFL,urban,38,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"20","20+",20,"20+",30,"30+","25-39",3.0,"1-3","2+","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.606399,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,9.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.25,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,1,4 + 38 9 3,SN81FL,urban,38,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,9.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 38 10 1,SN8BFL,urban,38,10,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,alone only,0,"0",7,"6+","6+",0,"0",0.0,0.0,female,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","51","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.606399,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"2.1-6.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 38 11 1,SN81FL,urban,38,11,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,1.0,female,"25",More than 5 years,Yes,Yes,No,No,No,No,"yes, but not in the last 12 months",never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,yes,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","56","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.630877,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 38 11 2,SN8BFL,urban,38,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.606399,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,1.6,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 38 12 2,SN8BFL,urban,38,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,1.0,,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",3,"2 or more",1.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",,Inconsistent or don't know,16,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.606399,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.25,"2.1-6.0",2.0,"0-7",1,28,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 38 12 4,SN81FL,urban,38,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,90.9090909090909,1.0,8.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",5.0,"0-7",1,41,wants within 2 years,wants within 2 years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 38 12 9,SN81FL,urban,38,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","15",under 30,No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"38","20+",38,"20+",39,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.630877,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,90.9090909090909,1.0,8.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",5.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,6 + 38 13 2,SN81FL,urban,38,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",11.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 38 13 6,SN8BFL,urban,38,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.606399,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 38 14 2,SN81FL,urban,38,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.630877,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,25.0,1.0,8.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",12.0,"7+",1,30,unsure timing,"wants, unsure timing",1.0,1.0,yes,1,3,1,5,3,3,3,2,3 + 38 14 4,SN8BFL,urban,38,14,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.606399,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,38.46153846153847,1.0,6.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.25,"2.1-6.0",5.0,"0-7",2,31,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 38 14 8,SN81FL,urban,38,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,25.0,1.0,8.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",12.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 38 14 9,SN8BFL,urban,38,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,38,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"30","20+",30,"20+",34,"30+","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,religious prohibition,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.606399,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,38.46153846153847,1.0,6.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.25,"2.1-6.0",5.0,"0-7",2,31,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 38 14 11,SN8BFL,urban,38,14,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.606399,0.0,,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,38.46153846153847,1.0,6.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.25,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 38 15 2,SN81FL,urban,38,15,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","62","60+",No,1.0,yes,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",22,"20+",23,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.630877,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 15 5,SN8BFL,urban,38,15,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,2,"2 or more",1.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,1.0,1.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"28","20+",28,"20+",29,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.606399,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,76.47058823529412,1.0,7.0,"5 and up",10.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.2,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 15 9,SN8BFL,urban,38,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",7,"6+","6+",0,"0",0.0,0.0,female,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,other,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"20","20+",20,"20+",21,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.606399,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,76.47058823529412,1.0,7.0,"5 and up",10.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.2,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 16 2,SN8BFL,urban,38,16,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","63","60+",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.606399,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,46.666666666666664,1.0,9.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"2.1-6.0",10.0,"7+",1,33,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 38 17 5,SN81FL,urban,38,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,38,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,1,"1",1,"1-2",<3,1,"1",1.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"31","20+",31,"20+",34,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 18 2,SN81FL,urban,38,18,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","63","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.630877,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,2.0,"2",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.5,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 38 18 7,SN8BFL,urban,38,18,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",8,"6+","6+",1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","77","60+",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"16","15-19",16,"15-19",17,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.606399,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,12.0,"5 and up",8.0,"5 and up",0.3076923076923077,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 38 18 25,SN8BFL,urban,38,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,38,diourbel urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",9,"6+","6+",1,"1",1.0,1.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",11.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",1.0,1.0,yes,,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.606399,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,12.0,"5 and up",8.0,"5 and up",0.3076923076923077,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 38 18 33,SN8BFL,urban,38,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,respondent alone,respondent alone,someone else,"0","1-3","30","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,less than once a week,1.0,"1","1",yes,0.606399,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,12.0,"5 and up",8.0,"5 and up",0.3076923076923077,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 38 19 5,SN81FL,urban,38,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","38","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.630877,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,42.10526315789473,1.0,17.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,13,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.4615384615384615,"2.1-6.0",13.0,"7+",,,,,,,,1,2,4,5,6,3,3,1,6 + 38 19 5,SN8BFL,urban,38,19,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,don't know,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,"yes, but don't remember when",Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,someone else,respondent alone,respondent alone,someone else,"0","1-3","42","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.606399,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,5.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 38 20 2,SN81FL,urban,38,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,38,diourbel urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",28,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.630877,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"2.1-6.0",3.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 38 20 3,SN81FL,urban,38,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,someone else,husband/partner alone,husband/ partner alone,someone else,"0","0","53","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Wolof,"19","15-19",19,"15-19",28,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.630877,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"2.1-6.0",3.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 38 20 6,SN81FL,urban,38,20,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",,Inconsistent or don't know,16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.630877,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"2.1-6.0",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 38 22 4,SN81FL,urban,38,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.630877,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,4.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",8.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 39 1 1,SN81FL,urban,39,1,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,Yes,Yes,No,Yes,Yes,No,"yes, but not in the last 12 months",never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,someone else,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","46","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.59688,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,2.0,"2",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 39 1 1,SN8BFL,urban,39,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,70.0,1.0,11.0,"5 and up",9.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.1666666666666665,"2.1-6.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 1 6,SN81FL,urban,39,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,more than him,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"1-3","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.59688,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,2.0,"2",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 39 1 18,SN8BFL,urban,39,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,70.0,1.0,11.0,"5 and up",9.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.1666666666666665,"2.1-6.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 3 2,SN81FL,urban,39,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 39 4 4,SN81FL,urban,39,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.59688,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,4.5,"2.1-6.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 39 5 1,SN81FL,urban,39,5,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,39,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,0,"0",0,"0",<3,1,"1",1.0,1.0,female,"3",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent alone,other,husband/partner alone,currently pregnant,other,"0","1-3","42","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"31","20+",31,"20+",33,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,0.59688,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",18.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 39 5 2,SN8BFL,urban,39,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","71","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"2.1-6.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 5 6,SN81FL,urban,39,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,39,diourbel urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,0,"0",9,"6+","6+",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,not married,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.59688,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",18.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 39 5 9,SN8BFL,urban,39,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,No,No,No,Yes,No,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.575346,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"2.1-6.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 5 13,SN8BFL,urban,39,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 39 6 2,SN81FL,urban,39,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,husband/partner alone,respondent alone,other,"0","1-3","36","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.59688,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.3333333333333335,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 39 6 4,SN81FL,urban,39,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,sales,sales,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.3333333333333335,"2.1-6.0",9.0,"7+",1,27,unsure timing,undecided,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 39 6 6,SN8BFL,urban,39,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",2.0,"0-7",1,25,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 39 7 2,SN81FL,urban,39,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,5.0,"5 and up",3.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 7 2,SN8BFL,urban,39,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,"17",More than 5 years,No,Yes,No,Yes,No,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","46","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,1.0,1.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.575346,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 39 7 6,SN81FL,urban,39,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","46","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,5.0,"5 and up",3.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 8 3,SN81FL,urban,39,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",12.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,20,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.2,"2.1-6.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 8 5,SN8BFL,urban,39,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","49","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",21,"20-29","20-24",5.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.575346,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"2.1-6.0",0.0,"0-7",1,26,unsure timing,"wants, unsure timing",1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 39 8 7,SN8BFL,urban,39,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"2.1-6.0",0.0,"0-7",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 39 8 14,SN81FL,urban,39,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,39,diourbel urbain,1.0,"1","1",First wife,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,6,"3+",5,"3-5","3-5",1,"1",1.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,someone else,respondent and husband/partner,husband/ partner alone,someone else,"1-3","1-3","45","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",12.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,20,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.2,"2.1-6.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 39 8 20,SN81FL,urban,39,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,39,diourbel urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,6,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.59688,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",12.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,20,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.2,"2.1-6.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 39 9 1,SN8BFL,urban,39,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","50","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",7.0,"7+","2+","2",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.575346,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,71.42857142857143,1.0,4.0,"3-4",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"2.1-6.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 10 6,SN81FL,urban,39,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,70.83333333333334,1.0,12.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.0,"2.1-6.0",5.0,"0-7",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 39 10 6,SN8BFL,urban,39,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"18","15-19",,Inconsistent or don't know,19,<20,"15-19",3.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.575346,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.33333333333333,1.0,7.0,"5 and up",8.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 39 10 9,SN81FL,urban,39,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.59688,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,70.83333333333334,1.0,12.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.0,"2.1-6.0",5.0,"0-7",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 39 10 10,SN8BFL,urban,39,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",1,"1",1.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.33333333333333,1.0,7.0,"5 and up",8.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 39 10 14,SN81FL,urban,39,10,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","52","30-59",Yes,1.0,yes,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.59688,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,70.83333333333334,1.0,12.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.0,"2.1-6.0",5.0,"0-7",1,30,unsure timing,undecided,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 39 11 1,SN8BFL,urban,39,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Wolof,"18","15-19",,Inconsistent or don't know,19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.575346,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 39 12 2,SN8BFL,urban,39,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"0","0",no,0.575346,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,93.33333333333333,1.0,7.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.142857142857143,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 39 12 4,SN81FL,urban,39,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,13.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"2.1-6.0",5.0,"0-7",1,25,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 39 12 11,SN81FL,urban,39,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,don't know,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,respondent alone,currently pregnant,respondent alone,"0","4+","37","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.59688,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,13.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"2.1-6.0",5.0,"0-7",0,29,,,,,no,1,3,1,5,3,3,3,2,3 + 39 12 14,SN8BFL,urban,39,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,93.33333333333333,1.0,7.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.142857142857143,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 39 12 17,SN81FL,urban,39,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","24",under 30,No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,13.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"2.1-6.0",5.0,"0-7",1,28,wants within 2 years,wants within 2 years,1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 39 12 19,SN81FL,urban,39,12,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.59688,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,13.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"2.1-6.0",5.0,"0-7",0,29,,,,,no,2,1,3,4,1,7,7,3,8 + 39 13 2,SN8BFL,urban,39,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"0",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",,Inconsistent or don't know,15,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,7.0,"5 and up",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,1.8,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 39 13 14,SN81FL,urban,39,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","15",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,69.56521739130434,1.0,13.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1,"2.1-6.0",18.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 14 1,SN81FL,urban,39,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","55","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.59688,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",7.0,"7+",0,,,,,,no,2,1,3,1,5,6,4,8,8 + 39 14 1,SN8BFL,urban,39,14,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,39,diourbel urbain,1.0,"1","3+",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,more than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","60","60+",Yes,1.0,no,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.575346,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 39 15 2,SN81FL,urban,39,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,39,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,1.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"2.1-6.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 15 7,SN8BFL,urban,39,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,39,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,don't know,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"0","1-3","51","30-59",No,0.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.575346,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,89.47368421052632,1.0,10.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,1.0,0.0,,,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 39 15 12,SN8BFL,urban,39,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,39,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",6,"6+","6+",1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","50","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",7.0,"7+","2+","2",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.575346,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,89.47368421052632,1.0,10.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,1.0,0.0,,,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 39 15 15,SN8BFL,urban,39,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",26,"20-29","25-39",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.575346,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,89.47368421052632,1.0,10.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,1.0,0.0,,,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 39 16 1,SN8BFL,urban,39,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5,"2.1-6.0",1.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 39 16 3,SN81FL,urban,39,16,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","39","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",,Inconsistent or don't know,18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.59688,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.91304347826086,1.0,13.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.6,"2.1-6.0",8.0,"7+",1,28,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 39 16 7,SN81FL,urban,39,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,39,diourbel urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,does not own,does not own,5,"3+",1,"1-2",<3,1,"1",1.0,1.0,female,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","58","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.59688,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.91304347826086,1.0,13.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.6,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 39 16 10,SN81FL,urban,39,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.91304347826086,1.0,13.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.6,"2.1-6.0",8.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 39 16 13,SN81FL,urban,39,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"11","5-14",11,"5-14",12,<20,<15,5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.91304347826086,1.0,13.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.6,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,1,5,6,4,8,8 + 39 16 18,SN81FL,urban,39,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.91304347826086,1.0,13.0,"5 and up",7.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.6,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 39 17 1,SN8BFL,urban,39,17,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,about the same,jointly only,does not own,0,"0",4,"3-5","3-5",3,"2 or more",1.0,1.0,female,,No longer with first partner,Yes,Yes,Yes,No,No,No,never,never,sometimes,never,"yes, but not in the last 12 months",never,never,never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,No,No,"12+ months ago",never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",24,"20-29","20-24",8.0,"7+","2+","3+",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.575346,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",2.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 39 18 4,SN8BFL,urban,39,18,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",5.0,"0-7",1,32,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 39 18 6,SN8BFL,urban,39,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.575346,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",5.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 39 20 1,SN81FL,urban,39,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,39,diourbel urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,1.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.59688,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.6666666666666667,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 39 20 8,SN8BFL,urban,39,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.575346,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"2.1-6.0",15.0,"7+",0,,never had sex,never had sex,,,yes,2,2,3,4,4,4,1,6,9 + 39 21 1,SN81FL,urban,39,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","45","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 39 21 2,SN81FL,urban,39,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,Yes,Yes,No,Yes,Yes,Yes,often,never,never,sometimes,never,sometimes,never,never,never,never,sometimes,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,no,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.59688,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,8,4,10 + 39 21 2,SN8BFL,urban,39,21,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,6,"3+",9,"6+","6+",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"12","5-14",12,"5-14",15,<20,"15-19",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.575346,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",13.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.5,"2.1-6.0",13.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 39 21 12,SN8BFL,urban,39,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,6,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","47","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"10","5-14",10,"5-14",11,<20,<15,6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.575346,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",13.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.5,"2.1-6.0",13.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 39 22 1,SN81FL,urban,39,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.59688,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.0,1.0,3.0,"3-4",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 39 22 5,SN81FL,urban,39,22,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","35","30-59",Yes,1.0,yes,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Wolof,"15","15-19",15,"15-19",17,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.59688,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.0,1.0,3.0,"3-4",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 39 22 7,SN81FL,urban,39,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,39,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","15",under 30,No,1.0,yes,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",18,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.59688,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.0,1.0,3.0,"3-4",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",0.0,"0-7",,,,,,,,1,2,1,5,4,1,2,5,7 + 40 1 2,SN8BFL,urban,40,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,respondent alone,currently pregnant,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",other/TBA,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.980749,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",5.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 40 1 3,SN81FL,urban,40,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,4,"3+",3,"3-5","3-5",1,"1",1.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.645433,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,54.54545454545454,1.0,6.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 40 1 8,SN81FL,urban,40,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.645433,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,54.54545454545454,1.0,6.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 40 2 3,SN81FL,urban,40,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.645433,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 40 3 2,SN8BFL,urban,40,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.980749,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,6.0,"5 and up",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.5,"2.1-6.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 40 4 2,SN8BFL,urban,40,4,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"0","0",no,0.980749,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,77.77777777777779,1.0,3.0,"3-4",6.0,"5 and up",4.0,4.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"2.1-6.0",7.0,"7+",1,28,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 40 4 5,SN81FL,urban,40,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.645433,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,7.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.75,"2.1-6.0",10.0,"7+",1,34,unsure timing,undecided,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 40 5 1,SN81FL,urban,40,5,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,1.0,female,"29",More than 5 years,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","49","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.645433,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.3333333333333333,"2.1-6.0",14.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 40 6 1,SN81FL,urban,40,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","50","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.645433,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 40 6 2,SN8BFL,urban,40,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,3,"3+",10,"6+","6+",0,"0",0.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.980749,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,11.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4285714285714284,"2.1-6.0",15.0,"7+",1,21,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 40 6 3,SN8BFL,urban,40,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,services,service/domestic,Family,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.980749,1.0,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,11.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4285714285714284,"2.1-6.0",15.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 40 7 2,SN81FL,urban,40,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,Yes,Yes,No,No,Yes,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.645433,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 40 7 11,SN8BFL,urban,40,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","58","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,Wolof,"21","20+",21,"20+",21,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.980749,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",11.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 40 8 1,SN8BFL,urban,40,8,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","49","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.980749,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 40 8 3,SN81FL,urban,40,8,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,someone else,respondent alone,respondent alone,"0","4+","62","60+",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.645433,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 40 9 1,SN81FL,urban,40,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"18",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",40,"30+","40+",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.645433,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 40 9 2,SN8BFL,urban,40,9,,,,,0.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,0.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.980749,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,40.0,1.0,7.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"2.1-6.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 40 9 7,SN8BFL,urban,40,9,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","55","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.980749,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,40.0,1.0,7.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"2.1-6.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 40 10 2,SN8BFL,urban,40,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",9,"6+","6+",1,"1",1.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","57","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"19","15-19",19,"15-19",20,"20-29","20-24",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.980749,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,2,3,5,4,3,3,1,3 + 40 10 8,SN8BFL,urban,40,10,0.0,1.0,1.0,1.0,0.0,1.0,1.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,0.0,,,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.980749,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 40 11 2,SN81FL,urban,40,11,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,40,diourbel urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",13,<20,<15,6.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.645433,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",9.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 40 11 2,SN8BFL,urban,40,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,services,service/domestic,Family,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,0.0,male,"8",More than 5 years,No,No,No,No,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.980749,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",10.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"2.1-6.0",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 40 11 6,SN8BFL,urban,40,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.980749,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",10.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 40 12 1,SN81FL,urban,40,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,40,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,other,respondent and husband/partner,"4+","0","40","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.645433,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 40 13 5,SN8BFL,urban,40,13,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.980749,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,10.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 40 13 11,SN8BFL,urban,40,13,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.980749,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,10.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 40 15 2,SN8BFL,urban,40,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,male,"22",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.980749,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,5.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.75,"2.1-6.0",15.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 40 15 4,SN81FL,urban,40,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","50","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.645433,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 40 16 2,SN81FL,urban,40,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"0","0",no,0.645433,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",9.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,2,1,5,6,1,2,5,7 + 40 16 2,SN8BFL,urban,40,16,,,,,0.0,0.0,,1.0,0.0,0.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,more than him,jointly only,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.980749,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,12.5,1.0,4.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",13.0,"7+",1,30,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 40 16 6,SN81FL,urban,40,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","15",under 30,Yes,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",27,"20-29","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.645433,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",9.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 40 18 1,SN81FL,urban,40,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","56","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.645433,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,3.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",7.0,"7+",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 40 18 1,SN8BFL,urban,40,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.980749,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,Recieved support,20.0,1.0,4.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.3333333333333333,"2.1-6.0",9.0,"7+",1,35,unsure timing,"wants, unsure timing",1.0,1.0,yes,1,2,4,5,6,3,3,1,6 + 40 19 10,SN81FL,urban,40,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","32","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.645433,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,31.25,1.0,9.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.7142857142857142,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 40 20 2,SN8BFL,urban,40,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,40,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.980749,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 40 20 7,SN8BFL,urban,40,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.980749,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 1 1,SN81FL,urban,42,1,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,someone else,husband/partner alone,other,someone else,"0","1-3","36","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.2,"2.1-6.0",0.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 42 1 2,SN8BFL,urban,42,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",29,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.553318,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 1 3,SN81FL,urban,42,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.2,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 42 1 7,SN81FL,urban,42,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",16,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.654309,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.2,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 42 2 1,SN81FL,urban,42,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,42,diourbel urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,1.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","60","60+",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 42 2 1,SN8BFL,urban,42,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,42,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","62","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.553318,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 42 2 5,SN81FL,urban,42,2,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","36","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",other/TBA,TBA / no one,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",5.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 42 2 8,SN81FL,urban,42,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,husband/partner alone,respondent alone,respondent alone,"1-3","4+","49","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 42 3 3,SN8BFL,urban,42,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"28",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","47","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,christian,0.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"4","5-14",15,"15-19",22,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.553318,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,71.42857142857143,1.0,3.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,7.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.5,"2.1-6.0",7.0,"7+",,,,,,,,2,2,3,2,4,4,1,6,9 + 42 3 5,SN81FL,urban,42,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"0","0",no,0.654309,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,4.0,"3-4",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 42 4 1,SN81FL,urban,42,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,female,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","63","60+",No,1.0,no,yes,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"21","20+",16,"15-19",20,"20-29","20-24",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 42 4 1,SN8BFL,urban,42,4,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","45","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.553318,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",6.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 42 4 5,SN8BFL,urban,42,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.553318,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",6.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 42 5 4,SN81FL,urban,42,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,someone else,someone else,respondent alone,someone else,"0","1-3","26",under 30,No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,9.0,"5 and up",3.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 42 5 6,SN81FL,urban,42,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent and husband/partner,someone else,someone else,respondent and husband/partner,respondent alone,someone else,"1-3","1-3","31","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.654309,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,9.0,"5 and up",3.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 42 6 2,SN8BFL,urban,42,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","54","30-59",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","3+",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.553318,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.0,"2.1-6.0",9.0,"7+",1,26,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 42 6 12,SN81FL,urban,42,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","39","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.654309,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,92.85714285714286,1.0,11.0,"5 and up",3.0,"3-4",0.2857142857142857,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 42 7 3,SN81FL,urban,42,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,7,"3+",7,"6+","6+",1,"1",1.0,0.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","46","30-59",No,1.0,no,yes,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.654309,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"2.1-6.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 42 7 6,SN8BFL,urban,42,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"2","1",yes,0.553318,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,70.0,1.0,6.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.0,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 7 12,SN81FL,urban,42,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,7,"3+",4,"3-5","3-5",2,"2 or more",1.0,0.0,female,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","38","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"2.1-6.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 7 19,SN81FL,urban,42,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,,"6","6+","5+",not partnered,no,,,condom not used,0,1,no,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,0.654309,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"2.1-6.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,8,8 + 42 7 22,SN81FL,urban,42,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,7,"3+",7,"6+","6+",0,"0",0.0,0.0,female,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,someone else,respondent alone,respondent and husband/partner,"1-3","1-3","67","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"2.1-6.0",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 42 7 26,SN81FL,urban,42,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","60","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",30,"30+","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"2.1-6.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 42 8 1,SN8BFL,urban,42,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.553318,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,4.0,"3-4",6.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.3333333333333335,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 42 8 2,SN81FL,urban,42,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,9.0,"5 and up",3.0,"3-4",0.16666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"2.1-6.0",14.0,"7+",1,26,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 42 8 7,SN81FL,urban,42,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","55","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,9.0,"5 and up",3.0,"3-4",0.16666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"2.1-6.0",14.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 42 8 10,SN81FL,urban,42,8,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","64","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,9.0,"5 and up",3.0,"3-4",0.16666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"2.1-6.0",14.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 42 9 2,SN8BFL,urban,42,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.553318,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,8.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.4,"2.1-6.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 9 10,SN8BFL,urban,42,9,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"23",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,someone else,husband/partner alone,other,someone else,"0","1-3","67","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.553318,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,8.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.4,"2.1-6.0",17.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 42 10 7,SN81FL,urban,42,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,88.88888888888889,1.0,7.0,"5 and up",2.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.2857142857142858,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 42 11 2,SN8BFL,urban,42,11,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","55","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"10","5-14",10,"5-14",16,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.553318,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",6.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 42 12 1,SN81FL,urban,42,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,0,"0",7,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,husband/ partner alone,husband/partner alone,"0","1-3","57","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",17,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,undecided,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",3.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 42 12 1,SN8BFL,urban,42,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","45","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",25,"20+",27,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.553318,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 42 13 1,SN81FL,urban,42,13,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,0.0,,,,,,,christian,0.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"14","5-14",14,"5-14",16,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"2.1-6.0",7.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 42 13 3,SN8BFL,urban,42,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"22","20+",20,"20+",24,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.553318,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"2.1-6.0",0.0,"0-7",,,,,,,,1,3,1,5,3,3,3,1,4 + 42 14 1,SN8BFL,urban,42,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","49","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.553318,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",1.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 14 2,SN81FL,urban,42,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,42,diourbel urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","63","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","3+",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"2.1-6.0",11.0,"7+",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 42 14 5,SN81FL,urban,42,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","32","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.654309,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"2.1-6.0",11.0,"7+",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 42 15 1,SN81FL,urban,42,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,female,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",23,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",1.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 42 16 1,SN8BFL,urban,42,16,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","58","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"0","0",no,0.553318,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",3.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 42 16 9,SN81FL,urban,42,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,1.75,"2.1-6.0",6.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 42 17 2,SN81FL,urban,42,17,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",2,"1-2",<3,2,"2 or more",1.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,11.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 17 6,SN8BFL,urban,42,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.553318,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"2.1-6.0",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 42 17 9,SN81FL,urban,42,17,1.0,,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,42,diourbel urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"19","15-19",,Inconsistent or don't know,16,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,don't know,"6","6+","5+",not partnered,no,,,condom not used,1,1,,0.0,,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.654309,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,11.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",12.0,"7+",,,,,,,,1,1,2,1,2,7,8,4,10 + 42 17 13,SN81FL,urban,42,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","26",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"2",<3,"0-4",both want same,no,,,condom not used,0,1,,0.0,lack of access,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.654309,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,11.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 42 19 7,SN8BFL,urban,42,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.553318,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.0,1.0,11.0,"5 and up",9.0,"5 and up",0.375,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.625,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 19 8,SN81FL,urban,42,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","52","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",other/TBA,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.654309,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,12.0,"5 and up",8.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 42 19 11,SN8BFL,urban,42,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,1.0,1.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.553318,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.0,1.0,11.0,"5 and up",9.0,"5 and up",0.375,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.625,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 19 12,SN81FL,urban,42,19,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,husband/ partner alone,someone else,"0","0","50","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.654309,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,12.0,"5 and up",8.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 42 19 14,SN8BFL,urban,42,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","58","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Wolof,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.553318,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.0,1.0,11.0,"5 and up",9.0,"5 and up",0.375,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.625,"2.1-6.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 42 19 16,SN81FL,urban,42,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,other,husband/ partner alone,someone else,"0","0","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",,Inconsistent or don't know,19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,12.0,"5 and up",8.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 42 19 21,SN8BFL,urban,42,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,jointly only,alone only,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.553318,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.0,1.0,11.0,"5 and up",9.0,"5 and up",0.375,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.625,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 20 2,SN8BFL,urban,42,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.553318,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 42 20 5,SN81FL,urban,42,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,8,"3+",1,"1-2",<3,2,"2 or more",1.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,74.19354838709677,1.0,12.0,"5 and up",8.0,"5 and up",1.1428571428571428,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2142857142857144,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 42 20 7,SN81FL,urban,42,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,8,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.654309,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,74.19354838709677,1.0,12.0,"5 and up",8.0,"5 and up",1.1428571428571428,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2142857142857144,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 42 20 10,SN81FL,urban,42,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,8,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.654309,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,74.19354838709677,1.0,12.0,"5 and up",8.0,"5 and up",1.1428571428571428,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2142857142857144,"2.1-6.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 42 20 14,SN81FL,urban,42,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,8,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"1",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.654309,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,74.19354838709677,1.0,12.0,"5 and up",8.0,"5 and up",1.1428571428571428,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2142857142857144,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 42 20 16,SN81FL,urban,42,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,8,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.654309,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,74.19354838709677,1.0,12.0,"5 and up",8.0,"5 and up",1.1428571428571428,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2142857142857144,"2.1-6.0",0.0,"0-7",2,27,wants within 2 years,wants within 2 years,,0.0,no,2,2,3,4,4,4,1,6,9 + 42 22 5,SN81FL,urban,42,22,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,42,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"0","0",yes,0.654309,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"2.1-6.0",13.0,"7+",1,26,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 43 1 2,SN8BFL,urban,43,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.592385,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 43 1 3,SN81FL,urban,43,1,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,43,diourbel urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","55","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",7.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 43 1 17,SN81FL,urban,43,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.539665,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",7.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 2 2,SN81FL,urban,43,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"0","1-3","58","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"0","0",no,0.539665,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,6.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.6666666666666665,"2.1-6.0",4.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 3 2,SN81FL,urban,43,3,,,,,0.0,0.0,,1.0,0.0,0.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,43,diourbel urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,18,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.539665,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 43 3 7,SN81FL,urban,43,3,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,43,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",7,"6+","6+",1,"1",1.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 43 5 1,SN81FL,urban,43,5,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.539665,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"2.1-6.0",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 43 5 5,SN81FL,urban,43,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.539665,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"2.1-6.0",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 43 6 4,SN81FL,urban,43,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,43,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.539665,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,6.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 43 6 9,SN81FL,urban,43,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,43,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,other,other,Someone else,Currently working,1.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","44","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.539665,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,6.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 43 7 2,SN81FL,urban,43,7,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.4285714285714286,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 7 4,SN81FL,urban,43,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","33","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.4285714285714286,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 7 6,SN81FL,urban,43,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"1-3","0","38","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.539665,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.4285714285714286,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 8 2,SN8BFL,urban,43,8,,,,,0.0,0.0,,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,43,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,3,"3+",4,"3-5","3-5",2,"2 or more",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","50","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",,Inconsistent or don't know,17,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.592385,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,44.44444444444444,1.0,9.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.25,"2.1-6.0",0.0,"0-7",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 43 8 5,SN81FL,urban,43,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,someone else,husband/ partner alone,someone else,"0","0","29",under 30,No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.539665,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 43 8 7,SN8BFL,urban,43,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,more than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent alone,currently pregnant,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.592385,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,44.44444444444444,1.0,9.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.25,"2.1-6.0",0.0,"0-7",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 43 8 9,SN81FL,urban,43,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",9.0,"7+",1,24,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 43 8 12,SN81FL,urban,43,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 43 8 14,SN8BFL,urban,43,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,husband/ partner alone,someone else,"0","1-3","38","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",,Inconsistent or don't know,11,<20,<15,2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.592385,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,44.44444444444444,1.0,9.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.25,"2.1-6.0",0.0,"0-7",0,,,,,,no,2,1,3,1,5,6,4,8,8 + 43 8 19,SN81FL,urban,43,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,1.0,1.0,0.0,43,diourbel urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,don't know,does not own,does not own,4,"3+",1,"1-2",<3,1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","60","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"26","20+",26,"20+",34,"30+","25-39",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"0","0",yes,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,9.0,"5 and up",11.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 43 9 2,SN81FL,urban,43,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,more than him,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,husband/ partner alone,respondent alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 43 9 10,SN8BFL,urban,43,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.592385,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,9.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 43 10 4,SN8BFL,urban,43,10,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.592385,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",0.0,"0-7",,,,,,,,1,1,3,3,5,7,8,4,10 + 43 10 5,SN81FL,urban,43,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.539665,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.25,1.0,9.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",9.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 43 10 9,SN81FL,urban,43,10,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,jointly only,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,husband/ partner alone,someone else,"0","0","30","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.539665,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.25,1.0,9.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",9.0,"7+",1,28,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 43 11 3,SN81FL,urban,43,11,1.0,,,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,5,"3+",8,"6+","6+",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,husband/ partner alone,husband/partner alone,"0","0","52","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"0","0",yes,0.539665,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",10.0,"5 and up",2.5,3.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"2.1-6.0",1.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 43 11 6,SN8BFL,urban,43,11,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","47","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.592385,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,37.5,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 43 11 10,SN81FL,urban,43,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",10.0,"5 and up",2.5,3.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"2.1-6.0",1.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 43 12 2,SN8BFL,urban,43,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","48","30-59",Yes,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.592385,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,55.55555555555556,1.0,3.0,"3-4",6.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"2.1-6.0",11.0,"7+",1,26,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 43 12 7,SN8BFL,urban,43,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,1.0,1.0,1.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.592385,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,55.55555555555556,1.0,3.0,"3-4",6.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 13 3,SN81FL,urban,43,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","26",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,1.6666666666666667,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 14 2,SN8BFL,urban,43,14,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","47","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"12","5-14",12,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.592385,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8333333333333333,"2.1-6.0",0.0,"0-7",3,31,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 43 14 5,SN8BFL,urban,43,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.592385,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8333333333333333,"2.1-6.0",0.0,"0-7",3,31,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 43 14 10,SN8BFL,urban,43,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,1.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.592385,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8333333333333333,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 43 15 8,SN81FL,urban,43,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,43,diourbel urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,husband no earnings,does not own,does not own,3,"3+",2,"1-2",<3,1,"1",1.0,1.0,male,"20",More than 5 years,Yes,Yes,No,No,No,No,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,respondent alone,someone else,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.30434782608695,1.0,11.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2857142857142856,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 43 15 14,SN81FL,urban,43,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","34","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,0.0,,,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.30434782608695,1.0,11.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2857142857142856,"2.1-6.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 43 15 19,SN81FL,urban,43,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.30434782608695,1.0,11.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2857142857142856,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 16 4,SN8BFL,urban,43,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,alone only,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.592385,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,45.45454545454545,1.0,6.0,"5 and up",5.0,"5 and up",0.75,1.0,Other,Other,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.2,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 17 4,SN81FL,urban,43,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","53","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,1.0,1.8,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 43 18 2,SN81FL,urban,43,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","68","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.539665,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",6.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 43 18 5,SN81FL,urban,43,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","51","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Wolof,"19","15-19",19,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.539665,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",6.0,"0-7",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 43 19 2,SN81FL,urban,43,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,Yes,No,No,Yes,Yes,"yes, but not in the last 12 months",never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,77.77777777777779,1.0,3.0,"3-4",6.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",4.0,"0-7",,,,,,,,1,2,4,5,6,3,3,1,6 + 43 19 3,SN8BFL,urban,43,19,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,1.0,female,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.592385,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"2.1-6.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 19 8,SN81FL,urban,43,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","60","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"26","20+",26,"20+",39,"30+","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,77.77777777777779,1.0,3.0,"3-4",6.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",4.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 20 2,SN81FL,urban,43,20,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,1.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","1-3","47","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"16","15-19",16,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.539665,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",17.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 43 20 5,SN8BFL,urban,43,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","65","60+",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"29","20+",29,"20+",32,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.592385,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,9.0,"5 and up",11.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7777777777777777,"2.1-6.0",6.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 43 20 12,SN8BFL,urban,43,20,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.592385,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,9.0,"5 and up",11.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7777777777777777,"2.1-6.0",6.0,"0-7",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 43 20 15,SN8BFL,urban,43,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","66","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.592385,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,9.0,"5 and up",11.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7777777777777777,"2.1-6.0",6.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 43 20 19,SN8BFL,urban,43,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,2.0,2.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",2,"2 or more",1.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.592385,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,9.0,"5 and up",11.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7777777777777777,"2.1-6.0",6.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 43 21 4,SN8BFL,urban,43,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.592385,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,4.0,"3-4",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.6666666666666665,"2.1-6.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 43 22 2,SN8BFL,urban,43,22,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43,diourbel urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","66","60+",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.592385,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 51 1 1,SN8BFL,urban,51,1,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","39","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"0-2.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 51 3 2,SN81FL,urban,51,3,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.600521,1.0,1.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",2.0,"1-2",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",6.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 51 4 3,SN81FL,urban,51,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.600521,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 51 5 2,SN8BFL,urban,51,5,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","49","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,undecided,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.6666666666666665,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 51 5 9,SN8BFL,urban,51,5,,,,,0.0,0.0,,1.0,0.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.6666666666666665,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 51 5 14,SN8BFL,urban,51,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","48","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.6666666666666665,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 51 6 2,SN81FL,urban,51,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Family,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.600521,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"0-2.0",5.0,"0-7",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 51 6 2,SN8BFL,urban,51,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",6,"6+","6+",2,"2 or more",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","53","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",10.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 51 7 8,SN8BFL,urban,51,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,51,saint-louis urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"32","20+",32,"20+",33,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.890778,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,53.84615384615385,1.0,15.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.1666666666666665,"0-2.0",15.0,"7+",,,,,,,,2,2,4,5,6,5,5,1,2 + 51 7 12,SN8BFL,urban,51,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.890778,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,53.84615384615385,1.0,15.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.1666666666666665,"0-2.0",15.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 51 7 17,SN8BFL,urban,51,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"31","20+",31,"20+",33,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.890778,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,53.84615384615385,1.0,15.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.1666666666666665,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 51 9 2,SN8BFL,urban,51,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Arabic,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,11.11111111111111,1.0,6.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 51 9 7,SN8BFL,urban,51,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,11.11111111111111,1.0,6.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 51 10 2,SN8BFL,urban,51,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","0","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"26","20+",26,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,yes,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.890778,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",0.4,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",7.0,"7+",1,41,wants within 2 years,wants within 2 years,0.0,0.0,yes,1,2,1,5,6,1,2,5,7 + 51 10 5,SN8BFL,urban,51,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",9,"6+","6+",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",9.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.890778,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",0.4,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",7.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 51 12 2,SN8BFL,urban,51,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","65","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"0",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,6.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 51 12 3,SN8BFL,urban,51,12,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"12","5-14",12,"5-14",19,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.890778,0.0,0.0,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,6.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",9.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,0.0,no,1,1,2,1,5,7,6,4,5 + 51 13 2,SN8BFL,urban,51,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.890778,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,62.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 51 13 3,SN81FL,urban,51,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,respondent alone,respondent and husband/partner,husband/ partner alone,respondent alone,"1-3","1-3","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.600521,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 51 13 5,SN8BFL,urban,51,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.890778,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,62.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 51 14 9,SN81FL,urban,51,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.600521,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,93.75,1.0,10.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",11.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 51 14 9,SN8BFL,urban,51,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","32","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Soninke,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.890778,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",10.0,"7+",1,,wants within 2 years,wants within 2 years,1.0,0.0,no,1,1,2,1,2,7,6,3,5 + 51 14 11,SN81FL,urban,51,14,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,1.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"15","15-19",15,"15-19",17,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.600521,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,93.75,1.0,10.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",11.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 51 14 11,SN8BFL,urban,51,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","23",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"9","5-14",9,"5-14",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,don't know,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,0.890778,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,1,2,1,5,7,6,4,5 + 51 15 3,SN8BFL,urban,51,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.890778,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.92307692307693,1.0,8.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 51 15 7,SN81FL,urban,51,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,Seasonal,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",not partnered,no,,,condom not used,0,1,yes,0.0,not having/infrequent sex,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.600521,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 51 16 2,SN81FL,urban,51,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","60","60+",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"20","20+",20,"20+",20,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.600521,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,16.666666666666664,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 51 17 3,SN81FL,urban,51,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","58","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.600521,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,6.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 51 17 8,SN81FL,urban,51,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,1.0,female,"6",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","34","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",,Inconsistent or don't know,21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.600521,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,6.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,1,2,4,5,6,3,3,1,6 + 51 18 2,SN8BFL,urban,51,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","42","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.890778,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",8.0,"7+",1,25,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 51 19 2,SN81FL,urban,51,19,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.600521,0.0,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 51 19 2,SN8BFL,urban,51,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"1","1",First wife,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"26",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 51 20 10,SN81FL,urban,51,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.600521,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,16.0,1.0,15.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,13,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,1.9230769230769231,"0-2.0",12.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 51 20 18,SN81FL,urban,51,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - employee,agricultural,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",27,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.600521,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,16.0,1.0,15.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,13,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,1.9230769230769231,"0-2.0",12.0,"7+",1,40,wants within 2 years,wants within 2 years,0.0,0.0,no,1,2,1,5,4,1,6,6,5 + 51 20 21,SN81FL,urban,51,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - employee,agricultural,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.600521,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,16.0,1.0,15.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,13,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,1.9230769230769231,"0-2.0",12.0,"7+",1,32,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,2,1,2,7,6,3,5 + 51 21 2,SN8BFL,urban,51,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"1","2",Second or more wife,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"29",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.125,"0-2.0",6.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 51 21 3,SN81FL,urban,51,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Didn't work last 12 months,,not working,not working,husband no earnings,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","62","60+",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.600521,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,53.84615384615385,1.0,5.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8571428571428572,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 51 21 5,SN8BFL,urban,51,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,51,saint-louis urbain,1.0,"1","1",First wife,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",6,"6+","6+",2,"2 or more",1.0,0.0,male,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","63","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"10","5-14",10,"5-14",11,<20,<15,8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.890778,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.125,"0-2.0",6.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 51 21 7,SN81FL,urban,51,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,51,saint-louis urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,professional/technical/managerial,,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.600521,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,53.84615384615385,1.0,5.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8571428571428572,"0-2.0",12.0,"7+",,,,,,,,1,2,3,5,4,3,3,1,3 + 51 22 2,SN8BFL,urban,51,22,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,51,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"33","20+",33,"20+",34,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.890778,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,16.0,yes,Recieved support,0.0,0.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"0-2.0",12.0,"7+",1,36,wants within 2 years,wants within 2 years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 51 22 10,SN81FL,urban,51,22,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,don't know,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.600521,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.0,1.0,14.0,"5 and up",6.0,"5 and up",0.16666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 51 22 14,SN81FL,urban,51,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,51,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"37","20+",37,"20+",39,"30+","25-39",2.0,"1-3","2+","2",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.600521,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.0,1.0,14.0,"5 and up",6.0,"5 and up",0.16666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 52 1 2,SN8BFL,urban,52,1,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,52,saint-louis urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,both alone and jointly,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,Yes,No,Yes,Yes,Yes,No,never,never,never,never,sometimes,never,never,never,sometimes,sometimes,never,sometimes,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"22","20+",,Inconsistent or don't know,22,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,,"5","3-5","5+",not partnered,no,,,condom not used,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.056018,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,40.0,1.0,6.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 52 1 8,SN8BFL,urban,52,1,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","47","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.056018,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,40.0,1.0,6.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 52 2 2,SN8BFL,urban,52,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,52,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.056018,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,81.81818181818183,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"0-2.0",7.0,"7+",2,22,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 52 2 7,SN8BFL,urban,52,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,52,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","37","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.056018,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,81.81818181818183,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"0-2.0",7.0,"7+",2,22,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 52 3 2,SN8BFL,urban,52,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","59","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",25,"20-29","25-39",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.056018,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 52 4 1,SN8BFL,urban,52,4,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,52,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,don't know,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","62","60+",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.056018,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 52 5 2,SN8BFL,urban,52,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,52,saint-louis urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,1.0,female,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,other,other,other,respondent alone,other,"0","1-3","50","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",27,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.056018,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.5555555555555556,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 52 5 6,SN8BFL,urban,52,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,52,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,respondent alone,other,"0","1-3","50","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.056018,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.5555555555555556,"0-2.0",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 52 6 2,SN8BFL,urban,52,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,alone only,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Poular,"13","5-14",13,"5-14",14,<20,<15,8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.056018,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,33.33333333333333,1.0,8.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",11.0,"7+",1,24,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,2,3,5,2,8,4,10 + 52 7 2,SN8BFL,urban,52,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","59","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.056018,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 52 8 3,SN8BFL,urban,52,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,52,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.056018,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,9.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 52 15 5,SN8BFL,urban,52,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","22",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.056018,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.5,"0-2.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 52 16 8,SN8BFL,urban,52,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","34","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.056018,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,46.15384615384615,1.0,9.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 52 16 12,SN8BFL,urban,52,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.056018,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,46.15384615384615,1.0,9.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"0-2.0",13.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 52 19 2,SN8BFL,urban,52,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"24","20+",,Inconsistent or don't know,24,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.056018,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 52 20 2,SN8BFL,urban,52,20,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","57","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.056018,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",8.0,"7+",1,42,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,2,3 + 52 22 2,SN8BFL,urban,52,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,52,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",6,"6+","6+",2,"2 or more",1.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","44","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,1.056018,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",6.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",6.0,"0-7",1,29,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 53 1 4,SN8BFL,urban,53,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.821384,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,83.33333333333334,1.0,5.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 53 2 4,SN8BFL,urban,53,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,not at all,less than once a week,1.0,"2","1",yes,0.821384,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",8.0,"7+",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 53 2 8,SN8BFL,urban,53,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.821384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",8.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 53 2 11,SN8BFL,urban,53,2,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,53,saint-louis urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",7,"6+","6+",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","60","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"23","20+",23,"20+",24,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,yes,yes,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.821384,1.0,,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",8.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 53 2 16,SN8BFL,urban,53,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.821384,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.25,1.0,10.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",8.0,"7+",0,,,,,,no,1,1,2,1,2,7,6,3,5 + 53 3 7,SN8BFL,urban,53,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,no more,does not want more kids,"0",<3,"0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.821384,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 53 3 13,SN8BFL,urban,53,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","2",<3,"0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.821384,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 53 4 2,SN8BFL,urban,53,4,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,53,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","38","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"6","5-14",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.821384,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",6.0,"0-7",2,24,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 53 5 2,SN8BFL,urban,53,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.821384,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 53 7 4,SN8BFL,urban,53,7,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,53,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.821384,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 53 10 10,SN8BFL,urban,53,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.821384,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 53 12 1,SN8BFL,urban,53,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.821384,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,8.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",9.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 53 13 3,SN8BFL,urban,53,13,0.0,1.0,1.0,1.0,0.0,1.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,about the same,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.821384,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",8.0,"5 and up",2.5,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,4.0,"0-2.0",0.0,"0-7",,,,,,,,1,1,3,3,5,7,8,4,10 + 53 14 1,SN8BFL,urban,53,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.821384,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",1.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 53 16 3,SN8BFL,urban,53,16,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.821384,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"0-2.0",12.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 53 17 2,SN8BFL,urban,53,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"17","15-19",17,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.821384,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 53 17 7,SN8BFL,urban,53,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","57","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.821384,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 53 18 7,SN8BFL,urban,53,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.821384,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 53 18 9,SN8BFL,urban,53,18,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 12 months,,unskilled manual,manual,more than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,currently pregnant,husband/partner alone,"0","1-3","43","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",15,"15-19",18,<20,"15-19",6.0,"4-6","2+","3+",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.821384,1.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",1,27,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 53 19 4,SN8BFL,urban,53,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","26",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",14,"5-14",15,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.821384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,7.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 53 19 9,SN8BFL,urban,53,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","34","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"2","1",yes,0.821384,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,7.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"0-2.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 53 20 9,SN8BFL,urban,53,20,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,0.0,no,no,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.821384,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,11.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7142857142857144,"0-2.0",15.0,"7+",1,21,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 53 20 11,SN8BFL,urban,53,20,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",,Inconsistent or don't know,20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.821384,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,11.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7142857142857144,"0-2.0",15.0,"7+",0,,,,,,yes,2,2,4,2,6,5,5,7,2 + 53 21 2,SN8BFL,urban,53,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,alone only,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",20,"20-29","20-24",7.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.821384,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"0-2.0",2.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 53 22 2,SN8BFL,urban,53,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","52","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.821384,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,1,<6,1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",8.0,"7+",1,25,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 55 3 2,SN81FL,urban,55,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","46","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,religious prohibition,"4",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.826003,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",10.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 55 5 2,SN81FL,urban,55,5,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,jointly only,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","61","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.826003,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,1.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 55 5 7,SN81FL,urban,55,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","55","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.826003,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,1.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 55 6 2,SN81FL,urban,55,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","44","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Poular,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.826003,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,14.0,yes,Recieved support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",2.0,"0-7",1,31,wants within 2 years,wants within 2 years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 55 7 2,SN81FL,urban,55,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,sales,sales,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","53","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.826003,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",15.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 55 7 9,SN81FL,urban,55,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,55,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","57","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.826003,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 55 7 11,SN81FL,urban,55,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.826003,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 55 8 2,SN81FL,urban,55,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.826003,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,Yes,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 55 9 2,SN81FL,urban,55,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 12 months,,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"18","15-19",18,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.826003,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,44.44444444444444,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.25,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 55 11 6,SN81FL,urban,55,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","1-3","42","30-59",Yes,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.826003,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.81818181818183,1.0,3.0,"3-4",8.0,"5 and up",3.0,4.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.5,"0-2.0",8.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 55 15 4,SN81FL,urban,55,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","48","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.826003,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 55 16 2,SN81FL,urban,55,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","47","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.826003,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 55 16 4,SN81FL,urban,55,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","49","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Poular,"15","15-19",15,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.826003,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 55 18 6,SN81FL,urban,55,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","32","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,don't know,not at all,not at all,not at all,0.0,"1","1",yes,0.826003,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",3.0,4.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,1.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 55 21 13,SN81FL,urban,55,21,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,3,"3+",0,"0",<3,1,"1",1.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","29",under 30,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.826003,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,82.14285714285714,1.0,12.0,"5 and up",8.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",15.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 55 21 15,SN81FL,urban,55,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,55,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,yes,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.826003,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,82.14285714285714,1.0,12.0,"5 and up",8.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",15.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 55 21 18,SN81FL,urban,55,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"17",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.826003,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,82.14285714285714,1.0,12.0,"5 and up",8.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",15.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 55 21 23,SN81FL,urban,55,21,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,55,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","45","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"22","20+",22,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,no,yes,yes,not at all,less than once a week,at least once a week,1.0,"0","0",yes,0.826003,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,82.14285714285714,1.0,12.0,"5 and up",8.0,"5 and up",0.375,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",15.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 56 1 2,SN8BFL,urban,56,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","39","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"3","1",yes,1.089334,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 56 5 4,SN8BFL,urban,56,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - employee,agricultural,,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,other,other,other,respondent and husband/ partner,other,"0","0","49","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,1.089334,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,93.33333333333333,1.0,10.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 56 5 10,SN8BFL,urban,56,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,currently pregnant,other,"0","0","33","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.089334,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,93.33333333333333,1.0,10.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"0-2.0",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 56 6 3,SN8BFL,urban,56,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,56,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","49","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.089334,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.36363636363636,1.0,10.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",12.0,"7+",2,29,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,3,2,3,2,2,8,4,10 + 56 6 8,SN8BFL,urban,56,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","43","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.089334,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.36363636363636,1.0,10.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",12.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,3,1,5,3,3,3,2,3 + 56 6 18,SN8BFL,urban,56,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,56,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","49","30-59",Yes,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",22,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.089334,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.36363636363636,1.0,10.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",12.0,"7+",2,29,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,2,3,2,4,6,1,6,9 + 56 8 1,SN8BFL,urban,56,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,56,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"14","5-14",14,"5-14",20,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.089334,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,3,2,4,6,1,6,9 + 56 9 3,SN8BFL,urban,56,9,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","41","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.089334,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,10.0,"5 and up",5.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 56 10 2,SN8BFL,urban,56,10,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.089334,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",13.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 56 12 2,SN8BFL,urban,56,12,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","49","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,christian,0.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"12","5-14",,Inconsistent or don't know,12,<20,<15,5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.089334,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.47619047619048,1.0,9.0,"5 and up",11.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2222222222222223,"0-2.0",13.0,"7+",1,34,wants no more,wants no more,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 56 12 7,SN8BFL,urban,56,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,56,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,5.0,"4-6","2+","3+",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.089334,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.47619047619048,1.0,9.0,"5 and up",11.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2222222222222223,"0-2.0",13.0,"7+",2,30,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,3,2,3,5,2,8,4,10 + 56 12 11,SN8BFL,urban,56,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",14,"5-14",17,<20,"15-19",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.089334,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.47619047619048,1.0,9.0,"5 and up",11.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2222222222222223,"0-2.0",13.0,"7+",1,24,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,1,1,6,4,8,8 + 56 13 2,SN8BFL,urban,56,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,56,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",11,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",13.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.089334,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 56 14 2,SN8BFL,urban,56,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,1,"1",8,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","46","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",8.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.089334,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",12.0,"7+",1,35,wants in 2+ years,wants after 2+ years,0.0,0.0,no,1,3,2,3,2,2,8,4,10 + 56 15 2,SN8BFL,urban,56,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,56,saint-louis urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",8,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","57","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.089334,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,6.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5714285714285714,"0-2.0",14.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 56 20 2,SN8BFL,urban,56,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,not at all,1.0,"2","1",yes,1.089334,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",2.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 56 21 7,SN8BFL,urban,56,21,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,56,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","29",under 30,No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Poular,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.089334,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,66.66666666666666,1.0,6.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 61 1 8,SN81FL,urban,61,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.00189,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,68.75,1.0,5.0,"5 and up",11.0,"5 and up",2.5,3.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 61 1 10,SN81FL,urban,61,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,0.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Arabic,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.00189,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,68.75,1.0,5.0,"5 and up",11.0,"5 and up",2.5,3.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 61 3 2,SN81FL,urban,61,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,1,"1",4,"3-5","3-5",2,"2 or more",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",,Inconsistent or don't know,18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.00189,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"0-2.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 61 5 1,SN81FL,urban,61,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.00189,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 61 7 1,SN81FL,urban,61,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.00189,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",1.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 61 8 1,SN81FL,urban,61,8,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"24","20+",24,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.00189,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",3.0,"0-7",3,28,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 61 9 13,SN81FL,urban,61,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","30","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.00189,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,8.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.142857142857143,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 61 10 2,SN81FL,urban,61,10,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","80","60+",Yes,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",6.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,1.00189,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"0-2.0",12.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 61 11 7,SN81FL,urban,61,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,yes,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.00189,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,59.09090909090909,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 61 11 12,SN81FL,urban,61,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,61,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,more than him,does not own,does not own,5,"3+",5,"3-5","3-5",1,"1",1.0,1.0,female,"22",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,yes,0.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.00189,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,59.09090909090909,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",13.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 61 15 3,SN81FL,urban,61,15,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Wolof,"17","15-19",17,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.00189,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.95238095238095,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5714285714285716,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 61 15 9,SN81FL,urban,61,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 12 months,,unskilled manual,manual,about the same,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.00189,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.95238095238095,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5714285714285716,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 61 15 14,SN81FL,urban,61,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,less than once a week,1.0,"2","1",yes,1.00189,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.95238095238095,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5714285714285716,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 61 15 17,SN81FL,urban,61,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","27",under 30,No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"3",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.00189,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.95238095238095,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5714285714285716,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 61 18 2,SN81FL,urban,61,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.00189,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",6.0,"0-7",1,33,unsure timing,undecided,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 61 19 3,SN81FL,urban,61,19,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,61,saint-louis urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,male,"24",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,,husband/partner alone,husband/partner alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","52","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"11","5-14",11,"5-14",12,<20,<15,6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.00189,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",6.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 61 20 2,SN81FL,urban,61,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.00189,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",10.0,"7+",1,21,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 61 21 6,SN81FL,urban,61,21,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.00189,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.5,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 61 21 9,SN81FL,urban,61,21,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","38","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.00189,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.5,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 61 21 13,SN81FL,urban,61,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","39","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.00189,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.5,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 61 22 8,SN81FL,urban,61,22,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.00189,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 61 22 10,SN81FL,urban,61,22,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,61,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","26",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.00189,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 62 1 2,SN81FL,urban,62,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.078959,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,2.0,"2",6.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 62 4 2,SN81FL,urban,62,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",7.0,"7+","2+","3+",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.078959,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",6.0,"0-7",1,41,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 62 5 2,SN81FL,urban,62,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,Yes,No,Yes,Yes,Yes,often,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.078959,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,6.0,"0-2.0",5.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 62 6 2,SN81FL,urban,62,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,62,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,alone only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","47","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.078959,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"0-2.0",17.0,"7+",2,33,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 62 6 5,SN8BFL,urban,62,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.897707,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",9.0,"5 and up",1.3333333333333333,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",0.0,"0-7",1,28,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 62 6 10,SN8BFL,urban,62,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.897707,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",9.0,"5 and up",1.3333333333333333,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",0.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 62 6 12,SN8BFL,urban,62,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","28",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.897707,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",9.0,"5 and up",1.3333333333333333,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",0.0,"0-7",1,27,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 62 7 2,SN8BFL,urban,62,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Family,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","48","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.897707,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",1.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 62 7 10,SN81FL,urban,62,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","27",under 30,No,0.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.078959,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 62 7 13,SN81FL,urban,62,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","28",under 30,No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.078959,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 62 7 16,SN81FL,urban,62,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","60","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.078959,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 62 9 4,SN8BFL,urban,62,9,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.897707,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,4.5,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 62 10 2,SN81FL,urban,62,10,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.078959,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",9.0,"7+",1,34,unsure timing,undecided,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 62 10 2,SN8BFL,urban,62,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",10,"6+","6+",1,"1",1.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",11.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.897707,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",1.0,"0-7",1,27,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 62 11 1,SN8BFL,urban,62,11,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,female,"28",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","51","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"5","3-5","5+",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.897707,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 62 11 2,SN81FL,urban,62,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,don't know,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.078959,0.0,1.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 62 12 1,SN8BFL,urban,62,12,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.897707,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,2.0,"2",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 62 13 1,SN8BFL,urban,62,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","52","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",,Inconsistent or don't know,17,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.897707,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 62 14 1,SN8BFL,urban,62,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,62,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","58","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.897707,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",6.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 62 15 2,SN81FL,urban,62,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,62,saint-louis urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,don't know,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,don't know,don't know,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.078959,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",13.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 62 15 2,SN8BFL,urban,62,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","39","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.897707,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",0.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 62 15 6,SN81FL,urban,62,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,62,saint-louis urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,don't know,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","44","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,no,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,1.078959,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",13.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 62 15 11,SN81FL,urban,62,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,62,saint-louis urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,don't know,does not own,does not own,2,"2",3,"3-5","3-5",5,"2 or more",1.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,no,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.078959,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",13.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",5.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 62 16 2,SN81FL,urban,62,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",9,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,less than once a week,at least once a week,1.0,"3","1",yes,1.078959,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,68.75,1.0,6.0,"5 and up",10.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.333333333333333,"0-2.0",7.0,"7+",2,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 62 16 2,SN8BFL,urban,62,16,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,62,saint-louis urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","56","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.897707,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"0-2.0",1.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 62 16 8,SN8BFL,urban,62,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,62,saint-louis urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","63","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.897707,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"0-2.0",1.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 62 17 2,SN81FL,urban,62,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.078959,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",8.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 62 18 2,SN81FL,urban,62,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Poular,"12","5-14",12,"5-14",14,<20,<15,5.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.078959,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,6.0,"0-2.0",1.0,"0-7",1,35,unsure timing,undecided,1.0,1.0,no,1,1,2,1,5,7,6,4,5 + 62 18 4,SN8BFL,urban,62,18,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.897707,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 62 18 8,SN8BFL,urban,62,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.897707,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",1,26,wants within 2 years,wants within 2 years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 62 19 3,SN81FL,urban,62,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.078959,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 62 20 4,SN8BFL,urban,62,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,husband/ partner alone,other,"0","0","28",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.897707,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.3333333333333335,"0-2.0",1.0,"0-7",1,23,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 62 20 7,SN81FL,urban,62,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","2",<3,"0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,1.078959,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,36.36363636363637,1.0,3.0,"3-4",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",10.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 62 22 2,SN8BFL,urban,62,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,62,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"2","1",yes,0.897707,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",5.0,"0-7",1,26,wants in 2+ years,wants after 2+ years,0.0,0.0,no,1,1,2,1,2,7,6,3,5 + 63 2 2,SN8BFL,urban,63,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","50","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",12.0,"7+",2,33,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 63 2 4,SN81FL,urban,63,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,63,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",,Inconsistent or don't know,19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"0-2.0",13.0,"7+",0,,,,,,yes,2,1,3,4,1,7,7,3,8 + 63 2 5,SN81FL,urban,63,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"0-2.0",13.0,"7+",0,,,,,,yes,2,1,3,4,1,7,7,3,8 + 63 2 7,SN81FL,urban,63,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"0-2.0",13.0,"7+",2,30,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 63 4 2,SN8BFL,urban,63,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,household and domestic,service/domestic,,does not own,does not own,1,"1",7,"6+","6+",1,"1",1.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","52","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.657508,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.5,"0-2.0",8.0,"7+",1,35,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 63 6 1,SN81FL,urban,63,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.70903,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",11.0,"7+",0,,never had sex,never had sex,,,no,1,2,4,5,6,3,3,1,6 + 63 6 3,SN8BFL,urban,63,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,10.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8571428571428572,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 63 6 9,SN8BFL,urban,63,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.657508,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,10.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8571428571428572,"0-2.0",8.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 63 6 12,SN8BFL,urban,63,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","34","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.657508,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,10.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8571428571428572,"0-2.0",8.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 63 7 3,SN8BFL,urban,63,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.657508,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",6.0,"5 and up",2.5,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",4.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 63 7 8,SN8BFL,urban,63,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.657508,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",6.0,"5 and up",2.5,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 63 9 7,SN81FL,urban,63,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.70903,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,11.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 63 9 10,SN81FL,urban,63,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,skilled manual,manual,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",2,"2 or more",1.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"24","20+",24,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,11.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 63 9 16,SN81FL,urban,63,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","40","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,11.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 63 10 2,SN8BFL,urban,63,10,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,6.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",14.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 63 10 3,SN81FL,urban,63,10,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,male,"33",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","49","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.70903,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",13.0,"7+",1,28,wants no more,wants no more,1.0,1.0,yes,1,3,2,3,2,2,8,4,10 + 63 11 2,SN81FL,urban,63,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"31","20+",31,"20+",34,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.70903,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,61.111111111111114,1.0,15.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5714285714285716,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 63 11 17,SN81FL,urban,63,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","3+",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.70903,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,61.111111111111114,1.0,15.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5714285714285716,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 63 12 1,SN8BFL,urban,63,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","55","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 63 12 2,SN81FL,urban,63,12,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","52","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,yes,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.70903,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,75.0,1.0,3.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",5.0,"0-7",1,38,wants within 2 years,wants within 2 years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 63 13 2,SN8BFL,urban,63,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"24",More than 5 years,Yes,Yes,Yes,Yes,Yes,Yes,often,never,often,often,sometimes,never,never,never,sometimes,sometimes,never,sometimes,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","52","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,20.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 63 13 6,SN81FL,urban,63,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,yes,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.70903,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,6.0,"5 and up",11.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",14.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 63 14 2,SN8BFL,urban,63,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","41","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.657508,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.23529411764706,1.0,10.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 63 14 4,SN81FL,urban,63,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,62.5,1.0,5.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"0-2.0",15.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,1,2,1,5,6,1,2,5,7 + 63 14 8,SN8BFL,urban,63,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","62","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.23529411764706,1.0,10.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 63 15 2,SN81FL,urban,63,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.70903,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",11.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 63 16 1,SN81FL,urban,63,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,1.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,4.0,"3-4",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.6666666666666665,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 63 16 6,SN8BFL,urban,63,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.657508,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6,"0-2.0",10.0,"7+",1,22,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 63 16 8,SN81FL,urban,63,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,63,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",1,"1",1.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Wolof,"26","20+",26,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,4.0,"3-4",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.6666666666666665,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 63 17 2,SN8BFL,urban,63,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,3.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",10.0,"7+",,,,,,,,1,2,3,5,4,3,3,1,3 + 63 18 2,SN8BFL,urban,63,18,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.657508,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",7.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 63 18 4,SN81FL,urban,63,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,don't know,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","23",under 30,No,1.0,yes,no,0.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.70903,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 63 18 6,SN8BFL,urban,63,18,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",7.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",8.0,"7+",,,,,,,,1,2,3,5,4,3,3,1,3 + 63 19 2,SN81FL,urban,63,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","54","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"24","20+",24,"20+",25,"20-29","25-39",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,4.0,"3-4",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",7.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 63 19 4,SN8BFL,urban,63,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,1,"1",1.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"29","20+",29,"20+",31,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.09677419354838,1.0,12.0,"5 and up",8.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.1,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 63 19 6,SN8BFL,urban,63,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.657508,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.09677419354838,1.0,12.0,"5 and up",8.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.1,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 63 19 24,SN8BFL,urban,63,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"35","20+",35,"20+",37,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.657508,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.09677419354838,1.0,12.0,"5 and up",8.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.1,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 63 20 3,SN81FL,urban,63,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,don't know,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.70903,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,3.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.3333333333333335,"0-2.0",9.0,"7+",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 63 21 2,SN8BFL,urban,63,21,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"25",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","62","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.657508,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 63 21 9,SN81FL,urban,63,21,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.70903,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,2.0,"0-2.0",2.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 63 21 13,SN81FL,urban,63,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,63,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"11",More than 5 years,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","31","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.70903,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,2.0,"0-2.0",2.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 63 22 2,SN81FL,urban,63,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,1.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","62","60+",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",25,"20-29","25-39",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.70903,1.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,Recieved support,,,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.25,"0-2.0",6.0,"0-7",0,,never had sex,never had sex,,,yes,2,2,4,2,6,5,5,7,2 + 64 1 1,SN81FL,urban,64,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.196375,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,1.0,yes,Recieved support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 64 1 5,SN81FL,urban,64,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,household and domestic,service/domestic,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","29",under 30,No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,1.0,yes,Recieved support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 64 2 4,SN8BFL,urban,64,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","48","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,86.95652173913044,1.0,10.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.6,"0-2.0",5.0,"0-7",1,31,infecund,declared infecund (respondent or partner(s)),1.0,0.0,no,1,1,2,1,2,7,6,3,5 + 64 2 11,SN8BFL,urban,64,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","46","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,86.95652173913044,1.0,10.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.6,"0-2.0",5.0,"0-7",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 64 2 16,SN8BFL,urban,64,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Wolof,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,86.95652173913044,1.0,10.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.6,"0-2.0",5.0,"0-7",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 64 3 1,SN8BFL,urban,64,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,64,saint-louis urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",8,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","60","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",9.0,"7+","2+","2",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.81005,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 64 3 2,SN81FL,urban,64,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,don't know,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 4 3,SN81FL,urban,64,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 4 4,SN8BFL,urban,64,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,5,"3+",6,"6+","6+",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","56","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.81005,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,10.0,"5 and up",10.0,"5 and up",0.625,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.666666666666667,"0-2.0",6.0,"0-7",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,2,1,5,7,6,4,5 + 64 4 7,SN81FL,urban,64,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.196375,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 4 10,SN8BFL,urban,64,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","52","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,undecided,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.81005,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,10.0,"5 and up",10.0,"5 and up",0.625,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.666666666666667,"0-2.0",6.0,"0-7",1,36,wants no more,wants no more,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 64 4 17,SN8BFL,urban,64,4,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",1,"1",1.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","42","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"13","5-14",13,"5-14",14,<20,<15,5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.81005,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,10.0,"5 and up",10.0,"5 and up",0.625,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.666666666666667,"0-2.0",6.0,"0-7",1,26,unsure timing,"wants, unsure timing",1.0,0.0,no,1,3,2,3,5,2,8,4,10 + 64 4 23,SN8BFL,urban,64,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",22,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,10.0,"5 and up",10.0,"5 and up",0.625,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.666666666666667,"0-2.0",6.0,"0-7",1,30,wants within 2 years,wants within 2 years,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 64 4 25,SN8BFL,urban,64,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.81005,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,10.0,"5 and up",10.0,"5 and up",0.625,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.666666666666667,"0-2.0",6.0,"0-7",0,,never had sex,never had sex,,,no,1,1,2,1,2,7,6,3,5 + 64 4 28,SN8BFL,urban,64,4,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,Seasonal,Worked last 12 months,,unskilled manual,manual,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",19,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.81005,1.0,,,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,10.0,"5 and up",10.0,"5 and up",0.625,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.666666666666667,"0-2.0",6.0,"0-7",0,,never had sex,never had sex,,,no,1,1,3,3,5,7,8,4,10 + 64 5 1,SN81FL,urban,64,5,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"22",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","56","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.196375,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 64 5 5,SN81FL,urban,64,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","49","30-59",No,1.0,yes,yes,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.196375,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",6.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 64 6 1,SN81FL,urban,64,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","54","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.196375,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",2.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 64 6 2,SN8BFL,urban,64,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,both alone and jointly,does not own,1,"1",8,"6+","6+",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","52","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",9.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 64 7 2,SN81FL,urban,64,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,7,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","52","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,don't know,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.196375,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.76923076923077,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.7142857142857144,"0-2.0",10.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 64 7 2,SN8BFL,urban,64,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.81005,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 7 7,SN81FL,urban,64,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","41","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",24,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,undecided,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,1.196375,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.76923076923077,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.7142857142857144,"0-2.0",10.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 64 7 12,SN81FL,urban,64,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","26",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",16,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.76923076923077,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.7142857142857144,"0-2.0",10.0,"7+",,,,,,,,1,1,2,1,5,7,6,4,5 + 64 7 15,SN81FL,urban,64,7,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.76923076923077,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.7142857142857144,"0-2.0",10.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 64 8 2,SN8BFL,urban,64,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",17,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.81005,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,6.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"0-2.0",15.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 64 8 6,SN81FL,urban,64,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","2",<3,"0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",2.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 64 9 5,SN81FL,urban,64,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,64,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","53","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,1.196375,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.81818181818183,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 64 9 7,SN8BFL,urban,64,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,64,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",1,"1-2",<3,1,"1",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","63","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.81005,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 64 10 6,SN81FL,urban,64,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,other,someone else,"0","0","19",under 30,No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.196375,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.0,"0-2.0",0.0,"0-7",0,,never had sex,never had sex,,,no,1,2,1,5,4,1,6,6,5 + 64 10 6,SN8BFL,urban,64,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",,Inconsistent or don't know,17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,10.0,"5 and up",6.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"0-2.0",13.0,"7+",1,23,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 64 10 7,SN81FL,urban,64,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.196375,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.0,"0-2.0",0.0,"0-7",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 64 10 11,SN8BFL,urban,64,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,10.0,"5 and up",6.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 64 10 15,SN8BFL,urban,64,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,10.0,"5 and up",6.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"0-2.0",13.0,"7+",1,32,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 64 11 1,SN8BFL,urban,64,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,8,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,56.25,1.0,8.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 11 2,SN81FL,urban,64,11,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,64,saint-louis urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,"26",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","55","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.196375,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 64 11 4,SN8BFL,urban,64,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,8,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.81005,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,56.25,1.0,8.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 11 7,SN8BFL,urban,64,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,8,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","25",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.81005,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,56.25,1.0,8.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 64 11 10,SN8BFL,urban,64,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,8,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","53","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",27,"20-29","25-39",6.0,"4-6","2+","2",no one,TBA / no one,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.81005,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,56.25,1.0,8.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 64 11 15,SN8BFL,urban,64,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,8,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","48","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,56.25,1.0,8.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 64 12 1,SN8BFL,urban,64,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 13 3,SN81FL,urban,64,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,7,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,13.0,yes,Recieved support,75.0,1.0,9.0,"5 and up",11.0,"5 and up",1.1666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,4.0,"0-2.0",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 64 13 5,SN8BFL,urban,64,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.81005,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,9.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.75,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 64 13 8,SN81FL,urban,64,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,jointly only,7,"3+",7,"6+","6+",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","15",under 30,No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",20,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.196375,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,13.0,yes,Recieved support,75.0,1.0,9.0,"5 and up",11.0,"5 and up",1.1666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,4.0,"0-2.0",0.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 64 13 10,SN8BFL,urban,64,13,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"12","5-14",12,"5-14",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,9.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.75,"0-2.0",12.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 64 13 16,SN81FL,urban,64,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,13.0,yes,Recieved support,75.0,1.0,9.0,"5 and up",11.0,"5 and up",1.1666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,4.0,"0-2.0",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 64 13 18,SN81FL,urban,64,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,7,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.196375,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,13.0,yes,Recieved support,75.0,1.0,9.0,"5 and up",11.0,"5 and up",1.1666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,4.0,"0-2.0",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 64 14 2,SN81FL,urban,64,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.196375,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",5.0,"0-7",1,31,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 64 14 2,SN8BFL,urban,64,14,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",1.0,HW did not discuss FP,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,1,"1",9,"6+","6+",0,"0",0.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.81005,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.16666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.142857142857143,"0-2.0",6.0,"0-7",0,,never had sex,never had sex,,,yes,1,3,2,3,2,2,8,4,10 + 64 14 12,SN8BFL,urban,64,14,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","51","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.16666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.142857142857143,"0-2.0",6.0,"0-7",1,30,wants no more,wants no more,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 64 14 20,SN8BFL,urban,64,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.16666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.142857142857143,"0-2.0",6.0,"0-7",1,30,wants within 2 years,wants within 2 years,0.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 64 15 2,SN81FL,urban,64,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","1-3","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.196375,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",3.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 64 16 6,SN81FL,urban,64,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.196375,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,12.0,yes,Recieved support,100.0,1.0,6.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",10.0,"7+",1,33,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 64 17 1,SN8BFL,urban,64,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,64,saint-louis urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,1.0,female,"23",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","59","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.81005,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 64 17 2,SN81FL,urban,64,17,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,No,Yes,No,Yes,Yes,Yes,sometimes,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,2.0,yes,Recieved support,87.5,1.0,2.0,"2",6.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",6.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 64 18 2,SN81FL,urban,64,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","45","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,1.196375,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",0.4,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 64 19 1,SN81FL,urban,64,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,40.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 19 4,SN81FL,urban,64,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,don't know,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"19","15-19",19,"15-19",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,40.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 64 19 4,SN8BFL,urban,64,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","39","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.81005,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",6.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.2,"0-2.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 64 19 10,SN8BFL,urban,64,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","39","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",15,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",6.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.2,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 64 20 3,SN81FL,urban,64,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","53","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",29,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 20 4,SN8BFL,urban,64,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,6.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 64 20 7,SN8BFL,urban,64,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,6.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 64 22 2,SN81FL,urban,64,22,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,don't know,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.196375,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 64 22 5,SN8BFL,urban,64,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.81005,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,9.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",12.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 64 22 7,SN81FL,urban,64,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.196375,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",13.0,"7+",2,26,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 64 22 10,SN8BFL,urban,64,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,64,saint-louis urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,,"3","3-5","0-4",not partnered,no,,,condom not used,1,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,0.81005,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,9.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",12.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,1,7 + 64 22 11,SN81FL,urban,64,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,64,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.196375,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",13.0,"7+",1,28,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 65 2 2,SN81FL,urban,65,2,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","59","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"0-2.0",12.0,"7+",1,39,unsure timing,undecided,,0.0,yes,1,3,2,3,2,2,8,4,10 + 65 2 2,SN8BFL,urban,65,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.712968,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",9.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 65 3 2,SN81FL,urban,65,3,,,,,1.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,alone only,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"30",More than 5 years,No,No,No,Yes,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","65","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 65 3 2,SN8BFL,urban,65,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","59","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.712968,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.6666666666666665,"0-2.0",18.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 65 5 3,SN81FL,urban,65,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.913351,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",5.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 65 6 3,SN81FL,urban,65,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,jointly only,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent and husband/ partner,respondent alone,"1-3","1-3","42","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.85714285714286,1.0,11.0,"5 and up",3.0,"3-4",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",15.0,"7+",2,32,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,3,1,5,3,3,3,9,1 + 65 6 9,SN81FL,urban,65,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.85714285714286,1.0,11.0,"5 and up",3.0,"3-4",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",15.0,"7+",1,34,unsure timing,"wants, unsure timing",0.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 65 6 12,SN81FL,urban,65,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"25","20+",26,"20+",26,"20-29","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,,More than 6,"6+","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.85714285714286,1.0,11.0,"5 and up",3.0,"3-4",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",15.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,1,4 + 65 7 2,SN8BFL,urban,65,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.712968,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",16.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 65 7 5,SN8BFL,urban,65,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,65,saint-louis urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,"5","3-5","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.712968,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",16.0,"7+",,,,,,,,2,2,4,5,6,5,5,1,2 + 65 7 9,SN81FL,urban,65,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,alone only,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","42","30-59",Yes,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,6.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 65 8 2,SN81FL,urban,65,8,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,65,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,3,"3+",8,"6+","6+",1,"1",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","52","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.913351,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",7.0,"7+",3,21,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 65 8 2,SN8BFL,urban,65,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","64","60+",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.712968,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.5,"0-2.0",15.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 65 8 7,SN81FL,urban,65,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,65,saint-louis urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","48","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Poular,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.913351,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",7.0,"7+",3,21,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 65 8 10,SN81FL,urban,65,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,65,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",20,"20+",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",7.0,"7+",3,21,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,4,4,1,6,9 + 65 8 15,SN81FL,urban,65,8,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.913351,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",7.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 65 10 2,SN81FL,urban,65,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Arabic,"32","20+",32,"20+",35,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.913351,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",21.0,"7+",1,40,wants no more,wants no more,0.0,1.0,yes,1,2,1,5,6,1,2,5,7 + 65 10 2,SN8BFL,urban,65,10,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.712968,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 65 11 5,SN81FL,urban,65,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","1-3","43","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,7.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 65 11 8,SN81FL,urban,65,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","30","30-59",Yes,1.0,no,no,1.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,7.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 65 12 2,SN81FL,urban,65,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",27,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.913351,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",9.0,"7+",1,32,wants no more,wants no more,0.0,1.0,no,1,2,1,5,6,1,2,5,7 + 65 12 4,SN8BFL,urban,65,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"22","20+",22,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.712968,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"0-2.0",15.0,"7+",1,41,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 65 12 7,SN8BFL,urban,65,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.712968,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"0-2.0",15.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 65 13 2,SN81FL,urban,65,13,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 65 13 2,SN8BFL,urban,65,13,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","49","30-59",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",,Inconsistent or don't know,19,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,have another,don't know,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.712968,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,20.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 65 13 5,SN81FL,urban,65,13,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 65 14 4,SN81FL,urban,65,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",8.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"0-2.0",11.0,"7+",1,27,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,2,3 + 65 14 10,SN81FL,urban,65,14,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","61","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",8.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"0-2.0",11.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 65 14 10,SN8BFL,urban,65,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.712968,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,11.0,"5 and up",4.0,"3-4",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5,"0-2.0",11.0,"7+",1,,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 65 16 2,SN81FL,urban,65,16,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,don't know,don't know,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",1.0,"0-7",1,25,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 65 16 3,SN8BFL,urban,65,16,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","56","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.712968,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"0-2.0",12.0,"7+",1,35,wants no more,wants no more,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 65 17 5,SN81FL,urban,65,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,No,Yes,No,No,No,No,sometimes,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","51","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Wolof,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,1.0,,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,1.0,1.0,1.0,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,2.0,"0-2.0",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 65 20 2,SN8BFL,urban,65,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,respondent and husband/ partner,other,"0","0","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.712968,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,66.66666666666666,1.0,4.0,"3-4",5.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 65 20 3,SN81FL,urban,65,20,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,jointly only,does not own,9,"3+",4,"3-5","3-5",1,"1",1.0,0.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","58","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,47.5,1.0,13.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,3.8,"0-2.0",10.0,"7+",1,35,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,2,3 + 65 20 4,SN8BFL,urban,65,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","30","30-59",No,1.0,yes,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.712968,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,66.66666666666666,1.0,4.0,"3-4",5.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 65 20 8,SN81FL,urban,65,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,9,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","65","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,yes,yes,,pharmacy,2,2,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"2","1",yes,0.913351,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,47.5,1.0,13.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,3.8,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 65 20 11,SN81FL,urban,65,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,don't know,jointly only,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,47.5,1.0,13.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,3.8,"0-2.0",10.0,"7+",1,24,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 65 20 16,SN81FL,urban,65,20,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,65,saint-louis urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,9,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Wolof,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,47.5,1.0,13.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,3.8,"0-2.0",10.0,"7+",2,32,unsure timing,undecided,1.0,1.0,yes,1,2,1,5,6,1,2,5,7 + 65 20 22,SN81FL,urban,65,20,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,65,saint-louis urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,9,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"34","20+",34,"20+",35,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,47.5,1.0,13.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,3.8,"0-2.0",10.0,"7+",2,32,unsure timing,undecided,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 65 21 2,SN81FL,urban,65,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - employee,agricultural,Someone else,Currently working,1.0,Seasonal,Worked last 12 months,,services,service/domestic,don't know,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,1.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"23","20+",,Inconsistent or don't know,23,"20-29","20-24",5.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.913351,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 65 21 2,SN8BFL,urban,65,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","42","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.712968,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 65 21 8,SN81FL,urban,65,21,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,alone only,does not own,5,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"31",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","53","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"0-2.0",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 65 21 13,SN81FL,urban,65,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,jointly only,jointly only,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 65 21 15,SN81FL,urban,65,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.913351,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"0-2.0",8.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 65 21 18,SN81FL,urban,65,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,65,saint-louis urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.913351,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"0-2.0",8.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 65 22 2,SN81FL,urban,65,22,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,65,saint-louis urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,skilled manual,manual,more than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"33",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",26,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.913351,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",5.0,"0-7",2,25,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 67 4 6,SN8BFL,urban,67,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,agricultural - self employed,agricultural,,does not own,does not own,8,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"1",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.944555,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,11.0,"5 and up",9.0,"5 and up",0.8888888888888888,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,16,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.875,"6.1-30",5.0,"0-7",1,33,wants in 2+ years,wants after 2+ years,,0.0,no,1,1,2,1,2,7,6,3,5 + 67 4 10,SN8BFL,urban,67,4,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,8,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,currently pregnant,someone else,"0","0","51","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",29,"20-29","25-39",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,11.0,"5 and up",9.0,"5 and up",0.8888888888888888,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,16,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.875,"6.1-30",5.0,"0-7",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 67 4 11,SN8BFL,urban,67,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,67,tambacounda urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,8,"3+",3,"3-5","3-5",1,"1",1.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,currently pregnant,someone else,"0","0","51","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,11.0,"5 and up",9.0,"5 and up",0.8888888888888888,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,16,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.875,"6.1-30",5.0,"0-7",0,,,,,,no,1,2,1,5,4,1,6,6,5 + 67 4 15,SN8BFL,urban,67,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,8,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,currently pregnant,someone else,"0","0","15",under 30,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,11.0,"5 and up",9.0,"5 and up",0.8888888888888888,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,16,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.875,"6.1-30",5.0,"0-7",0,,,,,,no,1,3,1,5,3,3,3,2,3 + 67 4 17,SN8BFL,urban,67,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,8,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.944555,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,11.0,"5 and up",9.0,"5 and up",0.8888888888888888,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,16,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.875,"6.1-30",5.0,"0-7",0,,,,,,no,1,1,2,1,2,7,6,3,5 + 67 5 3,SN8BFL,urban,67,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","24",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,no,no,not at all,not at all,not at all,0.0,"2","1",yes,0.944555,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",13.0,"5 and up",2.5,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 67 5 9,SN8BFL,urban,67,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",13,<20,<15,5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,no,no,no,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.944555,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",13.0,"5 and up",2.5,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7,"6.1-30",12.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 67 8 4,SN8BFL,urban,67,8,0.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","67","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,96.96969696969697,1.0,13.0,"5 and up",7.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"6.1-30",9.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 67 8 15,SN8BFL,urban,67,8,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","29",under 30,No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,96.96969696969697,1.0,13.0,"5 and up",7.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"6.1-30",9.0,"7+",1,22,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,2,3 + 67 8 24,SN8BFL,urban,67,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,96.96969696969697,1.0,13.0,"5 and up",7.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"6.1-30",9.0,"7+",1,35,unsure timing,"wants, unsure timing",1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 67 10 14,SN8BFL,urban,67,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.944555,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,10.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"6.1-30",9.0,"7+",1,32,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 67 12 8,SN8BFL,urban,67,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","67","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.944555,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",6.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",12.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 67 12 14,SN8BFL,urban,67,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","28",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.944555,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",6.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",12.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 67 13 3,SN8BFL,urban,67,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"1","2",Second or more wife,1.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","40","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"12","5-14",12,"5-14",13,<20,<15,5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5555555555555556,"6.1-30",10.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 67 13 5,SN8BFL,urban,67,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5555555555555556,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 67 13 7,SN8BFL,urban,67,13,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,currently pregnant,someone else,"0","0","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.944555,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5555555555555556,"6.1-30",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 67 13 9,SN8BFL,urban,67,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.944555,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5555555555555556,"6.1-30",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 67 13 12,SN8BFL,urban,67,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5555555555555556,"6.1-30",10.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 67 13 14,SN8BFL,urban,67,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.944555,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5555555555555556,"6.1-30",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 67 15 2,SN8BFL,urban,67,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,alone only,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","61","60+",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",26,"20-29","25-39",6.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,96.7741935483871,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.727272727272727,"6.1-30",2.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 67 15 10,SN8BFL,urban,67,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.944555,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,96.7741935483871,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.727272727272727,"6.1-30",2.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 67 15 17,SN8BFL,urban,67,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,alone only,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,someone else,respondent alone,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,96.7741935483871,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.727272727272727,"6.1-30",2.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 67 15 29,SN8BFL,urban,67,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 12 months,,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","38","30-59",No,1.0,yes,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.944555,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,96.7741935483871,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.727272727272727,"6.1-30",2.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 67 17 5,SN8BFL,urban,67,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,24,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","15",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.944555,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 67 17 8,SN8BFL,urban,67,17,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,24,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,husband/ partner alone,someone else,"0","0","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",,Inconsistent or don't know,26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.944555,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 67 17 11,SN8BFL,urban,67,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,24,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","72","60+",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",17,"15-19",23,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.944555,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 67 17 13,SN8BFL,urban,67,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,24,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","67","60+",No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.944555,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 67 17 17,SN8BFL,urban,67,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,24,"3+",5,"3-5","3-5",0,"0",0.0,1.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","65","60+",No,0.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.944555,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 67 17 22,SN8BFL,urban,67,17,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Didn't work last 12 months,,not working,not working,,does not own,does not own,24,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","68","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 67 17 31,SN8BFL,urban,67,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,24,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,"1","1",yes,0.944555,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 67 17 33,SN8BFL,urban,67,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,agricultural - self employed,agricultural,,does not own,does not own,24,"3+",7,"6+","6+",0,"0",0.0,1.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",20,"20+",21,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,don't know,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.944555,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,2,2,4,2,4,4,1,6,9 + 67 17 36,SN8BFL,urban,67,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,24,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,religious prohibition,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.944555,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 67 17 39,SN8BFL,urban,67,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 12 months,,agricultural - self employed,agricultural,,does not own,does not own,24,"3+",7,"6+","6+",0,"0",0.0,1.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","54","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.944555,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 67 17 41,SN8BFL,urban,67,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 12 months,,agricultural - self employed,agricultural,,does not own,does not own,24,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","53","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.944555,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 67 17 44,SN8BFL,urban,67,17,,,,,0.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,24,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 67 17 49,SN8BFL,urban,67,17,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,24,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.944555,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 67 17 53,SN8BFL,urban,67,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,24,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","15",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.944555,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 67 17 55,SN8BFL,urban,67,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,24,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.944555,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.7741935483870968,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,24,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 67 18 2,SN8BFL,urban,67,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.944555,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,11.0,"6.1-30",5.0,"0-7",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 67 18 5,SN8BFL,urban,67,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,no,no,not at all,not at all,not at all,0.0,"1","1",yes,0.944555,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,11.0,"6.1-30",5.0,"0-7",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 67 20 5,SN8BFL,urban,67,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67,tambacounda urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","65","60+",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.944555,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6363636363636362,"6.1-30",8.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 67 20 11,SN8BFL,urban,67,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,67,tambacounda urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,3,"3+",2,"1-2",<3,2,"2 or more",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","65","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6363636363636362,"6.1-30",8.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,2,3 + 67 20 16,SN8BFL,urban,67,20,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,1.0,"3+",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"0","0","51","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.944555,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6363636363636362,"6.1-30",8.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,9,6 + 67 20 21,SN8BFL,urban,67,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,67,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.944555,1.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6363636363636362,"6.1-30",8.0,"7+",1,28,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 68 1 2,SN81FL,urban,68,1,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,0,"0",8,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.50692,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.75,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 68 1 12,SN81FL,urban,68,1,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,68,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","49","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.50692,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.75,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 68 4 2,SN81FL,urban,68,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",8,"6+","6+",1,"1",1.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","62","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",10.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.50692,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,90.0,1.0,5.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.75,"6.1-30",13.0,"7+",0,,never had sex,never had sex,,,yes,1,3,2,3,5,2,8,4,10 + 68 5 2,SN81FL,urban,68,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",6,"6+","6+",1,"1",1.0,0.0,male,"22",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","56","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"26","20+",26,"20+",29,"20-29","25-39",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.50692,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.0,"6.1-30",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 68 5 9,SN81FL,urban,68,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,68,tambacounda urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,2,"2",0,"0",<3,2,"2 or more",1.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",2.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",not partnered,no,,,condom not used,1,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.50692,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.0,"6.1-30",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 68 6 2,SN81FL,urban,68,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,2,"2",8,"6+","6+",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","60","60+",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"2",0.0,0.0,,,,not at all,less than once a week,not at all,1.0,"2","1",yes,0.50692,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,77.77777777777779,1.0,3.0,"3-4",6.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"6.1-30",7.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 68 7 3,SN81FL,urban,68,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.50692,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 68 9 1,SN81FL,urban,68,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,68,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,Yes,Yes,Yes,Yes,No,No,never,sometimes,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,"yes, but not in the last 12 months",never,never,never,No,No,"12+ months ago","12+ months ago",Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","68","60+",Yes,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",9.0,"7+","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,yes,no,,pharmacy,1,2,,,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.50692,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.3333333333333333,"6.1-30",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 68 11 4,SN81FL,urban,68,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,alone only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","52","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"36","20+",,Inconsistent or don't know,36,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.50692,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5714285714285714,"6.1-30",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 68 12 2,SN81FL,urban,68,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","51","30-59",No,1.0,no,no,1.0,"yes, child was treated",1.0,0.0,1.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.50692,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 68 13 1,SN81FL,urban,68,13,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,Yes,Yes,No,Yes,Yes,No,never,never,sometimes,never,sometimes,sometimes,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,respondent alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"1-3","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"0","0",yes,0.50692,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,5.0,"6.1-30",4.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 68 15 2,SN81FL,urban,68,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","44","30-59",No,1.0,no,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.50692,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,16.666666666666664,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 68 16 2,SN81FL,urban,68,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.50692,0.0,,,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"6.1-30",9.0,"7+",1,27,wants no more,wants no more,1.0,1.0,yes,1,3,2,3,2,2,8,4,10 + 68 18 2,SN81FL,urban,68,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.50692,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",13.0,"7+",1,25,unsure timing,"wants, unsure timing",1.0,1.0,yes,1,3,2,3,2,2,8,4,10 + 68 20 3,SN81FL,urban,68,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.50692,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",1.0,"0-7",1,34,unsure timing,"wants, unsure timing",1.0,0.0,yes,1,3,1,5,3,3,3,2,3 + 68 21 5,SN81FL,urban,68,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",22,"20-29","20-24",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.50692,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 69 2 2,SN81FL,urban,69,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,husband/ partner alone,respondent alone,"0","4+","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.678576,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",6.0,"0-7",1,33,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 69 3 5,SN81FL,urban,69,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,Yes,Yes,No,Yes,No,No,never,sometimes,never,"yes, but not in the last 12 months",sometimes,sometimes,never,never,never,never,sometimes,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","28",under 30,No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.678576,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,62.5,1.0,5.0,"5 and up",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"6.1-30",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 69 4 4,SN81FL,urban,69,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","43","30-59",No,1.0,no,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.678576,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,47.82608695652174,1.0,11.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.875,"6.1-30",18.0,"7+",1,32,wants no more,wants no more,1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 69 4 9,SN81FL,urban,69,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,don't know,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.678576,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,47.82608695652174,1.0,11.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.875,"6.1-30",18.0,"7+",1,31,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 69 5 2,SN81FL,urban,69,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","31","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",,Inconsistent or don't know,16,<20,"15-19",3.0,"1-3","2+","3+",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.678576,1.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 69 5 13,SN81FL,urban,69,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","29",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.678576,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 69 6 5,SN81FL,urban,69,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.678576,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",13.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 69 9 7,SN81FL,urban,69,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent alone,respondent alone,husband/ partner alone,respondent alone,"0","4+","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.678576,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,93.33333333333333,1.0,9.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.875,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 69 11 2,SN81FL,urban,69,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","47","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"14","5-14",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.678576,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"6.1-30",17.0,"7+",,,,,,,,2,1,3,1,1,7,7,8,8 + 69 15 1,SN81FL,urban,69,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,On leave/absent,0.0,All year,,,don't know,other/dk,less than him,does not own,does not own,1,"1",5,"3-5","3-5",2,"2 or more",1.0,1.0,female,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","62","60+",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"2",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.678576,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 69 16 1,SN81FL,urban,69,16,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.678576,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5,"6.1-30",2.0,"0-7",0,,,,,,no,1,2,1,5,4,1,6,6,5 + 69 18 3,SN81FL,urban,69,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"1-3","0","50","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",7.0,"7+","2+","2",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.678576,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",10.0,"7+",1,28,unsure timing,"wants, unsure timing",,0.0,yes,1,3,1,5,3,3,3,2,3 + 69 20 2,SN81FL,urban,69,20,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,69,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",6,"6+","6+",1,"1",1.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","55","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.678576,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",0.0,"0-7",1,33,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,9,6 + 69 21 2,SN81FL,urban,69,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,69,tambacounda urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,alone only,alone only,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"11","5-14",11,"5-14",12,<20,<15,4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,,not at all,not at all,not at all,0.0,"1","1",yes,0.678576,0.0,1.0,,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 70 1 1,SN81FL,urban,70,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,0.0,1.0,,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,more than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,1.0,female,"20",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","46","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.637271,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,1.0,"0-1",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.3333333333333333,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 70 1 2,SN8BFL,urban,70,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,2.0,2.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","56","30-59",No,0.0,no,no,0.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"35","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,yes,,,government hospital,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,1.56305,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"6.1-30",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 70 3 1,SN81FL,urban,70,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.637271,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,40.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",9.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 70 5 2,SN81FL,urban,70,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.637271,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,7.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 70 7 1,SN81FL,urban,70,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,70,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,other,other/dk,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",18,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.637271,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 70 8 2,SN8BFL,urban,70,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",3.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.56305,0.0,,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",2.0,"0-7",1,31,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 70 9 7,SN8BFL,urban,70,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,70,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","57","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,1.56305,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",9.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",9.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 70 10 2,SN81FL,urban,70,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","38","30-59",Yes,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,christian,0.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.637271,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",0.0,"0-7",1,28,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 70 12 2,SN8BFL,urban,70,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","50","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,christian,0.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",18,"15-19",25,"20-29","25-39",4.0,"4-6","2+","2",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.56305,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",17.0,"7+",1,22,wants no more,wants no more,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 70 13 6,SN81FL,urban,70,13,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,70,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","80","60+",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"11","5-14",11,"5-14",14,<20,<15,6.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.637271,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",9.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 70 14 2,SN81FL,urban,70,14,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",0,"0",<3,1,"1",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","51","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"30","20+",30,"20+",38,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.637271,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,88.88888888888889,1.0,8.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,1.8,"6.1-30",6.0,"0-7",1,,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 70 14 3,SN8BFL,urban,70,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,alone only,0,"0",1,"1-2",<3,1,"1",1.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","61","60+",No,1.0,no,yes,1.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"33","20+",33,"20+",34,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.56305,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"6.1-30",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 70 14 6,SN81FL,urban,70,14,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","40","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.637271,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,88.88888888888889,1.0,8.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,1.8,"6.1-30",6.0,"0-7",1,30,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 70 15 2,SN81FL,urban,70,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"2",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.637271,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,3.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"6.1-30",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 70 15 2,SN8BFL,urban,70,15,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",25,"20+",25,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.56305,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 70 16 3,SN8BFL,urban,70,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,70,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",31,"30+","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,less than once a week,1.0,"2","1",yes,1.56305,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,62.5,1.0,5.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",19.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 70 16 6,SN81FL,urban,70,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","47","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.637271,1.0,,,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.1,"6.1-30",5.0,"0-7",1,24,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 70 16 10,SN81FL,urban,70,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,70,tambacounda urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,no partner,no partner,not working,not working,less than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",not partnered,no,,,condom not used,0,1,,,,"3",1.0,1.0,no,no,no,not at all,not at all,not at all,0.0,"1","1",yes,0.637271,1.0,,,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.1,"6.1-30",5.0,"0-7",0,27,,,,,yes,2,1,3,4,1,7,7,8,8 + 70 16 15,SN81FL,urban,70,16,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","31","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"22","20+",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,no,no,no,not at all,not at all,not at all,0.0,"1","1",yes,0.637271,1.0,,,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.1,"6.1-30",5.0,"0-7",1,20,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 70 18 2,SN81FL,urban,70,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","69","60+",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Mandinque,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.637271,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 70 20 2,SN81FL,urban,70,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","44","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.637271,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",5.0,"0-7",1,21,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 70 22 10,SN8BFL,urban,70,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,knows no method/source,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.56305,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,27.27272727272727,1.0,8.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 70 22 12,SN81FL,urban,70,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,70,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","25",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.637271,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.29411764705883,1.0,12.0,"5 and up",8.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,18,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.7777777777777777,"6.1-30",12.0,"7+",0,,,,,,yes,2,2,3,4,4,4,1,6,9 + 71 1 1,SN8BFL,urban,71,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,71,tambacounda urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,No,Yes,No,Yes,No,No,sometimes,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","50","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.841051,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",5.0,"0-7",,,,,,,,1,1,3,3,5,7,8,4,10 + 71 2 2,SN8BFL,urban,71,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,professional/technical/managerial,,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.841051,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",12.0,"7+",1,42,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 71 3 2,SN8BFL,urban,71,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,Yes,No,No,No,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","35","30-59",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",23,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.841051,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,2.0,"2",5.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 71 5 1,SN8BFL,urban,71,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.841051,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",3.0,"3-4",3.0,4.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",3.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 71 6 2,SN8BFL,urban,71,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,alone only,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","62","60+",Yes,1.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.841051,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,3.0,"3-4",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",12.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,2,1 + 71 11 4,SN8BFL,urban,71,11,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",6,"6+","6+",3,"2 or more",1.0,0.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,christian,0.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",9.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.841051,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,90.9090909090909,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"6.1-30",12.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 71 12 1,SN8BFL,urban,71,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,71,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"21","20+",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.841051,1.0,,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 71 13 13,SN8BFL,urban,71,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Mandinque,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.841051,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,87.5,1.0,7.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"6.1-30",10.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 71 14 3,SN8BFL,urban,71,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","28",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.841051,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,92.85714285714286,1.0,7.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"6.1-30",10.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,1,2,1,2,7,6,3,5 + 71 15 2,SN8BFL,urban,71,15,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,71,tambacounda urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.841051,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 71 15 6,SN8BFL,urban,71,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,71,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"35","20+",21,"20+",27,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.841051,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 71 18 3,SN8BFL,urban,71,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",17,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.841051,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",12.0,"7+",1,28,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 71 19 4,SN8BFL,urban,71,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.841051,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,60.0,1.0,5.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.25,"6.1-30",10.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 71 19 10,SN8BFL,urban,71,19,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,71,tambacounda urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",6,"6+","6+",1,"1",1.0,0.0,male,"34",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","65","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,don't know,don't know,don't know,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.841051,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,60.0,1.0,5.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.25,"6.1-30",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 71 20 1,SN8BFL,urban,71,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","38","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Poular,"14","5-14",14,"5-14",15,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.841051,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",8.0,"7+",0,,,,,,no,1,3,2,3,5,2,8,4,10 + 71 20 8,SN8BFL,urban,71,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.841051,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",8.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 71 21 1,SN8BFL,urban,71,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,71,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,No,Yes,No,No,No,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,yes,,,pharmacy,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.841051,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",13.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 71 22 7,SN8BFL,urban,71,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.841051,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",9.0,"5 and up",1.6666666666666667,2.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",8.0,"7+",1,36,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 71 22 10,SN8BFL,urban,71,22,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,71,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,5,"3+",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","68","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.841051,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",9.0,"5 and up",1.6666666666666667,2.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",8.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,1,5,6,4,8,8 + 72 1 2,SN8BFL,urban,72,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.634129,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"6.1-30",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 72 2 2,SN8BFL,urban,72,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.634129,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"6.1-30",12.0,"7+",1,32,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,1,5,3,3,3,9,1 + 72 3 2,SN8BFL,urban,72,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","48","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.634129,0.0,,,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 72 4 2,SN8BFL,urban,72,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.634129,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",15.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 72 5 2,SN8BFL,urban,72,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,Yes,No,Yes,Yes,Yes,Yes,never,never,never,sometimes,sometimes,never,never,never,often,never,"yes, but not in the last 12 months",never,No,No,,,,,,,,,,,,yes,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"3",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.634129,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,94.44444444444444,1.0,11.0,"5 and up",7.0,"5 and up",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"6.1-30",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 72 5 7,SN8BFL,urban,72,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"10","5-14",10,"5-14",14,<20,<15,4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.634129,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,94.44444444444444,1.0,11.0,"5 and up",7.0,"5 and up",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"6.1-30",13.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 72 6 1,SN8BFL,urban,72,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,72,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","65","60+",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"2",1.0,1.0,yes,,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.634129,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"6.1-30",12.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 72 8 1,SN8BFL,urban,72,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,72,tambacounda urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,alone only,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","63","60+",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.634129,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,1.0,"0-1",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 72 12 1,SN8BFL,urban,72,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",9,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","65","60+",Yes,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.634129,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"6.1-30",11.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 72 14 4,SN8BFL,urban,72,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.634129,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",10.0,"7+",1,34,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 72 14 8,SN8BFL,urban,72,14,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.634129,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 72 15 2,SN8BFL,urban,72,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"27","20+",27,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.634129,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"6.1-30",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 72 16 3,SN8BFL,urban,72,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.634129,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",12.0,"7+",1,26,wants in 2+ years,wants after 2+ years,0.0,0.0,no,1,2,1,5,6,1,2,5,7 + 72 18 15,SN8BFL,urban,72,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"0","0",yes,0.634129,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,94.11764705882352,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.4285714285714284,"6.1-30",12.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 72 19 2,SN8BFL,urban,72,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.634129,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 72 21 12,SN8BFL,urban,72,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,72,tambacounda urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","15",under 30,No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.634129,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",3.0,"3-4",0.16666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 72 22 2,SN8BFL,urban,72,22,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,72,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.634129,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,16.666666666666664,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",17.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 77 1 13,SN81FL,urban,77,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,77,tambacounda urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"26",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","95","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",27,"20-29","25-39",2.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.608304,0.0,,,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5454545454545454,"6.1-30",0.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 77 5 2,SN81FL,urban,77,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.608304,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 77 6 10,SN81FL,urban,77,6,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.608304,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",8.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 77 7 2,SN81FL,urban,77,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","49","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Wolof,"21","20+",21,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.608304,1.0,,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,80.76923076923077,1.0,12.0,"5 and up",8.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.5714285714285716,"6.1-30",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 77 7 18,SN81FL,urban,77,7,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,1.0,1.0,0.0,77,tambacounda urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.608304,0.0,,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,80.76923076923077,1.0,12.0,"5 and up",8.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.5714285714285716,"6.1-30",11.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 77 7 22,SN81FL,urban,77,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,77,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",4,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.608304,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,80.76923076923077,1.0,12.0,"5 and up",8.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.5714285714285716,"6.1-30",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 77 8 2,SN81FL,urban,77,8,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.608304,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,71.42857142857143,1.0,7.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.8,"6.1-30",12.0,"7+",1,29,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 77 8 10,SN81FL,urban,77,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,77,tambacounda urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,,More than 6,"6+","5+",not partnered,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.608304,1.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,71.42857142857143,1.0,7.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.8,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,4 + 77 11 18,SN81FL,urban,77,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",1,"1-2",<3,1,"1",1.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","28",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.608304,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 77 12 2,SN81FL,urban,77,12,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,5,"3+",4,"3-5","3-5",2,"2 or more",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","56","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.608304,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,96.0,1.0,8.0,"5 and up",12.0,"5 and up",0.7142857142857143,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",1,26,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 77 12 7,SN81FL,urban,77,12,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",1,"1",1.0,1.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent alone,respondent alone,respondent alone,"1-3","4+","51","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.608304,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,96.0,1.0,8.0,"5 and up",12.0,"5 and up",0.7142857142857143,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 77 12 13,SN81FL,urban,77,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,77,tambacounda urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,5,"3+",7,"6+","6+",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.608304,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,96.0,1.0,8.0,"5 and up",12.0,"5 and up",0.7142857142857143,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",2,24,unsure timing,"wants, unsure timing",1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 77 12 19,SN81FL,urban,77,12,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent alone,respondent alone,husband/ partner alone,respondent alone,"0","4+","38","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.608304,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,96.0,1.0,8.0,"5 and up",12.0,"5 and up",0.7142857142857143,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 77 15 2,SN81FL,urban,77,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,Yes,Yes,Yes,Yes,Yes,Yes,often,often,often,often,often,often,never,never,sometimes,never,often,never,No,Yes,"12+ months ago",never,No,Yes,Yes,No,No,No,No,No,No,,respondent alone,respondent alone,respondent and husband/partner,respondent alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","55","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"18","15-19",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.608304,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,3.0,"3-4",0.0,"0",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",0.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 77 16 1,SN81FL,urban,77,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,77,tambacounda urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","47","30-59",No,1.0,no,yes,1.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.608304,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 77 18 2,SN81FL,urban,77,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,77,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,1.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.608304,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",9.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.8,"6.1-30",7.0,"7+",2,28,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 77 18 5,SN81FL,urban,77,18,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,77,tambacounda urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",7,"6+","6+",2,"2 or more",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.608304,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",9.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.8,"6.1-30",7.0,"7+",2,28,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 77 19 1,SN81FL,urban,77,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,77,tambacounda urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",4,"2 or more",1.0,0.0,female,,No longer with first partner,Yes,No,No,Yes,Yes,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","65","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",11.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.608304,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",3.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 77 20 2,SN81FL,urban,77,20,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.608304,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,1.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",2.0,"0-7",1,27,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 77 21 6,SN81FL,urban,77,21,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,77,tambacounda urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,Yes,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.608304,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",4.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 81 1 2,SN81FL,urban,81,1,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","36","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.01617,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,11.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.8,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 81 1 6,SN8BFL,urban,81,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,Yes,Yes,Yes,Yes,Yes,Yes,never,never,sometimes,never,sometimes,never,never,never,sometimes,never,never,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.965932,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,3.0,"2.1-6.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 81 2 4,SN8BFL,urban,81,2,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.965932,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.25,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 81 2 7,SN81FL,urban,81,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"11","5-14",11,"5-14",13,<20,<15,1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4444444444444444,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 81 2 9,SN81FL,urban,81,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",1,"1-2",<3,1,"1",1.0,1.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,someone else,respondent alone,husband/partner alone,respondent alone,respondent alone,"1-3","1-3","44","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"22","20+",22,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4444444444444444,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 81 3 3,SN8BFL,urban,81,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.965932,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,7.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 81 4 2,SN81FL,urban,81,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Family,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","25",under 30,No,1.0,yes,no,1.0,"yes, child was treated",1.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.01617,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"2.1-6.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 81 4 3,SN8BFL,urban,81,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"32","20+",26,"20+",27,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.965932,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.0,1.0,7.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,yes,1,2,1,5,6,1,2,5,7 + 81 4 7,SN81FL,urban,81,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","32","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.01617,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 81 4 7,SN8BFL,urban,81,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.965932,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.0,1.0,7.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",12.0,"7+",1,32,unsure timing,"wants, unsure timing",1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 81 6 1,SN81FL,urban,81,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","60","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 81 7 1,SN81FL,urban,81,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.01617,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.2,"2.1-6.0",3.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 81 7 5,SN81FL,urban,81,7,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.01617,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.2,"2.1-6.0",3.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 81 8 7,SN81FL,urban,81,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","61","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.142857142857143,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 81 8 9,SN81FL,urban,81,8,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.142857142857143,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 81 8 13,SN81FL,urban,81,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"28","20+",28,"20+",33,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.142857142857143,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 81 9 4,SN81FL,urban,81,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","61","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 81 9 4,SN8BFL,urban,81,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,someone else,respondent and husband/ partner,someone else,"0","0","29",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,not at all,not at all,not at all,0.0,"2","1",yes,0.965932,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,71.42857142857143,1.0,4.0,"3-4",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",3.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 81 9 8,SN81FL,urban,81,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.01617,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"2.1-6.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 81 10 3,SN8BFL,urban,81,10,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","63","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"32","20+",32,"20+",32,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.965932,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 81 10 7,SN81FL,urban,81,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,1.01617,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.0,1.0,13.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 81 10 11,SN81FL,urban,81,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.01617,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.0,1.0,13.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",10.0,"7+",1,24,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 81 10 15,SN81FL,urban,81,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",32,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.0,1.0,13.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 81 10 18,SN81FL,urban,81,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","45","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"13","5-14",13,"5-14",16,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.0,1.0,13.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 81 11 5,SN8BFL,urban,81,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.965932,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 81 11 9,SN81FL,urban,81,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,Yes,Yes,No,No,No,No,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,No,Yes,No,No,No,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","29",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.01617,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,8.0,"5 and up",6.0,"5 and up",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.8,"2.1-6.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 81 12 2,SN81FL,urban,81,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,81,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",3,"2 or more",1.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,88.88888888888889,1.0,9.0,"5 and up",8.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"2.1-6.0",9.0,"7+",2,30,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 81 12 6,SN81FL,urban,81,12,1.0,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.01617,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,88.88888888888889,1.0,9.0,"5 and up",8.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"2.1-6.0",9.0,"7+",2,30,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 81 12 18,SN81FL,urban,81,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,88.88888888888889,1.0,9.0,"5 and up",8.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"2.1-6.0",9.0,"7+",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 81 13 1,SN81FL,urban,81,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"21",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.01617,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",4.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 81 13 1,SN8BFL,urban,81,13,0.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,1.0,female,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",,Inconsistent or don't know,22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,religious prohibition,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"0","0",no,0.965932,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,37.5,1.0,5.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.6,"2.1-6.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 81 13 4,SN81FL,urban,81,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,81,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",4.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 81 14 4,SN8BFL,urban,81,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.965932,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,62.5,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",13.0,"7+",2,20,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,3,2,3,2,2,8,4,10 + 81 15 1,SN8BFL,urban,81,15,,,,,0.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,No,No,No,Yes,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.965932,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richer,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,2.0,"2",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 81 15 6,SN81FL,urban,81,15,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,jointly only,does not own,3,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"27",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","58","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",24,"20-29","20-24",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,1.01617,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.25,1.0,9.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,4.0,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 81 15 14,SN81FL,urban,81,15,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.01617,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.25,1.0,9.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,4.0,"2.1-6.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 81 16 2,SN81FL,urban,81,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.01617,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 81 16 2,SN8BFL,urban,81,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,0.0,,,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.965932,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,16.666666666666664,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",11.0,"7+",1,34,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 81 17 2,SN8BFL,urban,81,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,Yes,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.965932,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",6.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 81 19 3,SN81FL,urban,81,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","1-3","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.01617,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 81 20 3,SN81FL,urban,81,20,1.0,1.0,1.0,0.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",0,"0",<3,1,"1",1.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","36","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.01617,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 81 20 5,SN8BFL,urban,81,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,0.965932,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",15.0,"7+",0,,never had sex,never had sex,,,yes,2,1,3,4,1,7,7,3,8 + 81 20 7,SN81FL,urban,81,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,81,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,respondent and husband/partner,respondent alone,someone else,"1-3","1-3","48","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"29","20+",17,"15-19",27,"20-29","25-39",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.01617,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 81 21 3,SN81FL,urban,81,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"35","20+",35,"20+",35,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.01617,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,6.0,"5 and up",6.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 81 21 7,SN81FL,urban,81,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","37","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.01617,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,6.0,"5 and up",6.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 81 22 1,SN8BFL,urban,81,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,81,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,alone only,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","63","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.965932,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"2.1-6.0",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 82 1 2,SN8BFL,urban,82,1,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","35","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",,Inconsistent or don't know,19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.418071,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,62.5,1.0,5.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 82 2 1,SN81FL,urban,82,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,skilled manual,manual,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"23","20+",17,"15-19",18,<20,"15-19",9.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.03965,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.5,"2.1-6.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 82 2 2,SN8BFL,urban,82,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,husband/ partner alone,respondent alone,"0","4+","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.418071,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",3.0,4.0,Other,Other,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,7.0,"2.1-6.0",0.0,"0-7",1,29,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 82 3 2,SN8BFL,urban,82,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,Yes,No,Yes,No,No,often,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"2","1",yes,1.418071,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,8.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 82 3 5,SN8BFL,urban,82,3,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.418071,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,8.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 82 4 2,SN81FL,urban,82,4,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","59","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",17,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.03965,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,7.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",16.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 82 5 2,SN8BFL,urban,82,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"26","20+",26,"20+",28,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.418071,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,8.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 82 5 7,SN8BFL,urban,82,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,,,,,1.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,jointly only,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.418071,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,8.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 82 5 13,SN8BFL,urban,82,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"39",More than 5 years,No,Yes,No,Yes,Yes,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","47","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"4","5-14",15,"15-19",36,"30+","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.418071,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,8.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 82 6 2,SN81FL,urban,82,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,82,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",7,"6+","6+",1,"1",1.0,0.0,male,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","59","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.03965,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,7.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"2.1-6.0",14.0,"7+",2,36,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 82 6 9,SN81FL,urban,82,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","59","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"14","5-14",14,"5-14",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.03965,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,7.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"2.1-6.0",14.0,"7+",2,36,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 82 6 9,SN8BFL,urban,82,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,82,kaolack urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,6,"3+",6,"6+","6+",1,"1",1.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",8.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,not married,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.418071,0.0,,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.64516129032258,1.0,11.0,"5 and up",9.0,"5 and up",0.5454545454545454,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.875,"2.1-6.0",6.0,"0-7",0,,,,,,yes,1,3,1,5,3,3,3,1,4 + 82 6 14,SN8BFL,urban,82,6,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"18","15-19",18,"15-19",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",not partnered,no,,,condom not used,0,1,no,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.418071,0.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.64516129032258,1.0,11.0,"5 and up",9.0,"5 and up",0.5454545454545454,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.875,"2.1-6.0",6.0,"0-7",0,,,,,,yes,2,2,3,4,4,4,1,1,9 + 82 6 16,SN8BFL,urban,82,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,sales,sales,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","23",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.418071,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.64516129032258,1.0,11.0,"5 and up",9.0,"5 and up",0.5454545454545454,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.875,"2.1-6.0",6.0,"0-7",0,,,,,,yes,2,2,4,2,6,5,5,7,2 + 82 6 19,SN8BFL,urban,82,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,6,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","49","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,1.418071,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.64516129032258,1.0,11.0,"5 and up",9.0,"5 and up",0.5454545454545454,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.875,"2.1-6.0",6.0,"0-7",1,33,unsure timing,"wants, unsure timing",1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 82 6 25,SN8BFL,urban,82,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","45","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.418071,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.64516129032258,1.0,11.0,"5 and up",9.0,"5 and up",0.5454545454545454,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.875,"2.1-6.0",6.0,"0-7",0,,,,,,yes,1,2,4,5,6,3,3,1,6 + 82 7 2,SN8BFL,urban,82,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,Yes,Yes,No,Yes,Yes,No,often,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","79","60+",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.418071,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",11.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 82 8 2,SN8BFL,urban,82,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,82,kaolack urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",3,"2 or more",1.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Wolof,"17","15-19",17,"15-19",19,<20,"15-19",8.0,"7+","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.418071,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,55.55555555555556,1.0,7.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.6,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 82 8 4,SN81FL,urban,82,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,82,kaolack urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","60","60+",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.03965,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,5.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",4.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 82 8 7,SN8BFL,urban,82,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",1.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.418071,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,55.55555555555556,1.0,7.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.6,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 82 8 12,SN8BFL,urban,82,8,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,alone only,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"24","20+",24,"20+",30,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.418071,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,55.55555555555556,1.0,7.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.6,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 82 10 2,SN8BFL,urban,82,10,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,0.0,1.0,,1.0,"3+",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","45","30-59",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",7.0,"7+","2+","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.418071,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"2.1-6.0",4.0,"0-7",1,32,unsure timing,"wants, unsure timing",,0.0,yes,1,3,2,3,5,2,8,4,10 + 82 11 2,SN8BFL,urban,82,11,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","26",under 30,No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,1.418071,0.0,,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 82 11 6,SN81FL,urban,82,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,82,kaolack urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,other,other/dk,about the same,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","53","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","3+",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.03965,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,18.0,yes,Recieved support,91.66666666666666,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.75,"2.1-6.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 82 11 11,SN81FL,urban,82,11,1.0,,,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,7,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,1.03965,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,18.0,yes,Recieved support,91.66666666666666,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.75,"2.1-6.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 82 11 21,SN81FL,urban,82,11,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,No,Yes,No,Yes,No,No,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","34","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,not at all,at least once a week,1.0,"1","1",yes,1.03965,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,18.0,yes,Recieved support,91.66666666666666,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.75,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 82 12 1,SN81FL,urban,82,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,82,kaolack urbain,0.0,not partnered,not currently married,not partnered,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",4.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",not partnered,no,,,condom not used,1,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.03965,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.0,"2.1-6.0",0.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 82 12 1,SN8BFL,urban,82,12,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,82,kaolack urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,no partner,no partner,not working,not working,,jointly only,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,sterilized/infecund,does not want more kids,"5","3-5","5+",not partnered,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.418071,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,8,8 + 82 13 6,SN8BFL,urban,82,13,1.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,Yes,Yes,No,No,No,No,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.418071,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,93.33333333333333,1.0,9.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",8.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 82 14 2,SN81FL,urban,82,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.03965,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,25.0,1.0,4.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 82 14 2,SN8BFL,urban,82,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,1.418071,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",18.0,"7+",1,30,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 82 15 2,SN8BFL,urban,82,15,0.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.418071,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 82 16 2,SN8BFL,urban,82,16,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",6,"6+","6+",2,"2 or more",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"16","15-19",16,"15-19",18,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,1.418071,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",4.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",5.0,"0-7",1,32,wants no more,wants no more,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 82 16 4,SN81FL,urban,82,16,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,14,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","43","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"20","20+",20,"20+",21,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.03965,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,10.0,"5 and up",10.0,"5 and up",2.3333333333333335,3.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.111111111111111,"2.1-6.0",12.0,"7+",2,27,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 82 16 7,SN81FL,urban,82,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,82,kaolack urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,14,"3+",5,"3-5","3-5",2,"2 or more",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","58","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.03965,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,10.0,"5 and up",10.0,"5 and up",2.3333333333333335,3.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.111111111111111,"2.1-6.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 82 16 12,SN81FL,urban,82,16,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,14,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","43","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"12","5-14",12,"5-14",17,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,1.03965,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,10.0,"5 and up",10.0,"5 and up",2.3333333333333335,3.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.111111111111111,"2.1-6.0",12.0,"7+",2,27,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,2,1,5,7,6,4,5 + 82 16 18,SN81FL,urban,82,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,14,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.03965,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,10.0,"5 and up",10.0,"5 and up",2.3333333333333335,3.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.111111111111111,"2.1-6.0",12.0,"7+",1,26,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 82 16 20,SN81FL,urban,82,16,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,14,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"3","1",yes,1.03965,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,10.0,"5 and up",10.0,"5 and up",2.3333333333333335,3.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.111111111111111,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 82 17 4,SN8BFL,urban,82,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","49","30-59",No,1.0,no,no,1.0,"yes, child was treated",1.0,1.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.418071,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 82 18 1,SN8BFL,urban,82,18,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,1.418071,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 82 19 4,SN81FL,urban,82,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.03965,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.11764705882352,1.0,10.0,"5 and up",7.0,"5 and up",0.375,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 82 19 10,SN81FL,urban,82,19,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,82,kaolack urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",0,"0",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","57","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",35,"30+","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.03965,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.11764705882352,1.0,10.0,"5 and up",7.0,"5 and up",0.375,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",9.0,"7+",,,,,,,,1,2,3,5,4,3,3,1,3 + 82 19 13,SN81FL,urban,82,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.03965,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.11764705882352,1.0,10.0,"5 and up",7.0,"5 and up",0.375,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 82 20 2,SN8BFL,urban,82,20,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,82,kaolack urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.418071,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",12.0,"7+",2,30,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 82 20 4,SN81FL,urban,82,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"15","15-19",15,"15-19",17,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.03965,1.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.26086956521739,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,yes,2,1,3,4,1,7,7,3,8 + 82 20 6,SN8BFL,urban,82,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.418071,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",12.0,"7+",2,30,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 82 20 9,SN81FL,urban,82,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.03965,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.26086956521739,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,yes,2,2,4,2,6,5,5,7,2 + 82 20 13,SN81FL,urban,82,20,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",31,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.03965,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.26086956521739,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,yes,1,2,1,5,6,1,2,5,7 + 82 20 18,SN81FL,urban,82,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,5,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.03965,1.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.26086956521739,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,yes,2,2,4,2,6,5,5,7,2 + 82 21 2,SN8BFL,urban,82,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,1.418071,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"2.1-6.0",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 82 21 8,SN81FL,urban,82,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,82,kaolack urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,1.03965,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.47058823529412,1.0,10.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",1.0,0.0,,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 82 21 13,SN81FL,urban,82,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,82,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",6,"6+","6+",1,"1",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","46","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.03965,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.47058823529412,1.0,10.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",1.0,0.0,,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"2.1-6.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 83 2 2,SN81FL,urban,83,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,83,kaolack urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"29","20+",29,"20+",29,"20-29","25-39",7.0,"7+","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.637289,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,14.285714285714285,1.0,5.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,10.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",12.0,"7+",2,25,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,1,5,3,3,3,9,1 + 83 3 12,SN8BFL,urban,83,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.550707,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,69.23076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 4 2,SN8BFL,urban,83,4,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","46","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.550707,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,9.0,"5 and up",4.0,"3-4",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"2.1-6.0",10.0,"7+",1,28,unsure timing,"wants, unsure timing",1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 83 4 9,SN8BFL,urban,83,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,,not at all,less than once a week,not at all,1.0,"1","1",yes,0.550707,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,9.0,"5 and up",4.0,"3-4",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"2.1-6.0",10.0,"7+",1,35,unsure timing,"wants, unsure timing",1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 83 5 1,SN8BFL,urban,83,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.550707,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 83 5 2,SN81FL,urban,83,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","43","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.637289,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,61.904761904761905,1.0,11.0,"5 and up",9.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.7272727272727273,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 5 11,SN81FL,urban,83,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",5.0,"4-6","2+","2",other/TBA,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.637289,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,61.904761904761905,1.0,11.0,"5 and up",9.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.7272727272727273,"2.1-6.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 83 8 7,SN81FL,urban,83,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,2,"2",8,"6+","6+",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","55","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,16,<20,"15-19",9.0,"7+","2+","3+",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.637289,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",5.0,"0-7",0,,never had sex,never had sex,,,no,1,1,2,1,2,7,6,3,5 + 83 9 2,SN8BFL,urban,83,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.550707,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,35.714285714285715,1.0,8.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"2.1-6.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 9 7,SN81FL,urban,83,9,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","42","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.637289,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,9.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.4,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 10 2,SN81FL,urban,83,10,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,83,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,7,"3+",5,"3-5","3-5",1,"1",1.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,husband/partner alone,respondent alone,respondent alone,"1-3","4+","54","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"20","20+",20,"20+",21,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.637289,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",12.0,"5 and up",0.875,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7777777777777777,"2.1-6.0",8.0,"7+",3,23,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 83 10 2,SN8BFL,urban,83,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","49","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.550707,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,25.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",4.0,"0-7",1,38,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 83 10 8,SN81FL,urban,83,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,7,"3+",7,"6+","6+",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","48","30-59",Yes,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Arabic,"18","15-19",18,"15-19",21,"20-29","20-24",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.637289,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",12.0,"5 and up",0.875,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7777777777777777,"2.1-6.0",8.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 83 10 15,SN81FL,urban,83,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,7,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent alone,husband/partner alone,husband/ partner alone,respondent alone,"0","1-3","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"34","20+",24,"20+",29,"20-29","25-39",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.637289,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",12.0,"5 and up",0.875,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7777777777777777,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 83 10 22,SN81FL,urban,83,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent alone,someone else,respondent alone,respondent alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.637289,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",12.0,"5 and up",0.875,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7777777777777777,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 83 11 4,SN8BFL,urban,83,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,,,,,0.0,1.0,1.0,1.0,0.0,,,,,0.0,0.0,0.0,83,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.550707,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 11 9,SN81FL,urban,83,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",24,"20-29","20-24",5.0,"4-6","2+","3+",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.637289,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,68.75,1.0,12.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,1.6,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 83 11 10,SN8BFL,urban,83,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,Yes,Yes,Yes,Yes,Yes,Yes,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,"yes, but not in the last 12 months",never,never,never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,respondent and husband/partner,husband/ partner alone,husband/partner alone,"1-3","1-3","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",25,"20-29","25-39",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.550707,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 83 11 14,SN81FL,urban,83,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","36","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.637289,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,68.75,1.0,12.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,1.6,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 12 1,SN8BFL,urban,83,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","63","60+",No,0.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.550707,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,14.0,yes,Recieved support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 83 12 2,SN81FL,urban,83,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,15,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"12","5-14",12,"5-14",14,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.637289,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0714285714285714,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,18,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.7777777777777777,"2.1-6.0",16.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 83 12 8,SN81FL,urban,83,12,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,15,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","46","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.637289,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0714285714285714,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,18,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.7777777777777777,"2.1-6.0",16.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 83 12 14,SN81FL,urban,83,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,15,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"24","20+",24,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.637289,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0714285714285714,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,18,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.7777777777777777,"2.1-6.0",16.0,"7+",1,22,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 83 12 18,SN81FL,urban,83,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,83,kaolack urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,15,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",,Inconsistent or don't know,14,<20,<15,6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.637289,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0714285714285714,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,18,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.7777777777777777,"2.1-6.0",16.0,"7+",2,15,wants no more,wants no more,0.0,0.0,no,1,1,2,1,5,7,6,4,5 + 83 12 23,SN81FL,urban,83,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,15,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,don't know,don't know,don't know,not at all,not at all,at least once a week,1.0,"3","1",yes,0.637289,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0714285714285714,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,18,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.7777777777777777,"2.1-6.0",16.0,"7+",1,26,wants in 2+ years,wants after 2+ years,0.0,0.0,no,1,2,1,5,6,1,2,5,7 + 83 12 28,SN81FL,urban,83,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,15,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,1.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.637289,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0714285714285714,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,18,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.7777777777777777,"2.1-6.0",16.0,"7+",1,37,wants within 2 years,wants within 2 years,0.0,0.0,no,1,1,2,1,2,7,6,3,5 + 83 13 8,SN8BFL,urban,83,13,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,83,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","47","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,Arabic,"12","5-14",12,"5-14",16,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.550707,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,8.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.25,"2.1-6.0",14.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 83 13 9,SN81FL,urban,83,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","35","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.637289,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,78.94736842105263,1.0,11.0,"5 and up",8.0,"5 and up",0.2857142857142857,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 83 13 14,SN81FL,urban,83,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","38","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.637289,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,78.94736842105263,1.0,11.0,"5 and up",8.0,"5 and up",0.2857142857142857,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 83 13 16,SN81FL,urban,83,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.637289,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,78.94736842105263,1.0,11.0,"5 and up",8.0,"5 and up",0.2857142857142857,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 83 14 2,SN8BFL,urban,83,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","39","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.550707,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,1.0,yes,Recieved support,75.0,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",19.0,"7+",0,,never had sex,never had sex,,,yes,2,2,4,2,6,5,5,7,2 + 83 15 4,SN8BFL,urban,83,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,83,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,1.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","50","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.550707,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 83 17 1,SN81FL,urban,83,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,other,other,Someone else,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"23",More than 5 years,Yes,Yes,Yes,No,No,No,often,never,never,never,"yes, but not in the last 12 months",never,never,never,often,never,never,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","4+","47","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.637289,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 17 1,SN8BFL,urban,83,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,1.0,female,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.550707,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,94.44444444444444,1.0,13.0,"5 and up",5.0,"5 and up",0.2857142857142857,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 83 17 8,SN8BFL,urban,83,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"33","20+",33,"20+",35,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.550707,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,94.44444444444444,1.0,13.0,"5 and up",5.0,"5 and up",0.2857142857142857,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 19 4,SN81FL,urban,83,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.637289,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,97.14285714285714,1.0,11.0,"5 and up",9.0,"5 and up",0.36363636363636365,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5333333333333334,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 19 4,SN8BFL,urban,83,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,83,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,No,Yes,Yes,No,No,No,never,never,often,never,never,never,never,never,sometimes,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,respondent and husband/partner,respondent alone,currently pregnant,respondent and husband/partner,"1-3","1-3","32","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.550707,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,9.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"2.1-6.0",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 83 19 7,SN8BFL,urban,83,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"27","20+",27,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,"5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.550707,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,9.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 19 9,SN8BFL,urban,83,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"1-3","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"0","0",no,0.550707,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,9.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"2.1-6.0",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 83 19 10,SN81FL,urban,83,19,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.637289,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,97.14285714285714,1.0,11.0,"5 and up",9.0,"5 and up",0.36363636363636365,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5333333333333334,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 19 13,SN8BFL,urban,83,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,83,kaolack urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","49","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.550707,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,9.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.75,"2.1-6.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 83 19 15,SN81FL,urban,83,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,no,not at all,not at all,at least once a week,1.0,"0","0",no,0.637289,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,97.14285714285714,1.0,11.0,"5 and up",9.0,"5 and up",0.36363636363636365,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5333333333333334,"2.1-6.0",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 83 19 29,SN81FL,urban,83,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,religious prohibition,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.637289,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,97.14285714285714,1.0,11.0,"5 and up",9.0,"5 and up",0.36363636363636365,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5333333333333334,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 83 19 35,SN81FL,urban,83,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,83,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,alone only,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","50","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"27","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.637289,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,97.14285714285714,1.0,11.0,"5 and up",9.0,"5 and up",0.36363636363636365,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5333333333333334,"2.1-6.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 83 20 1,SN81FL,urban,83,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",0,"0",<3,1,"1",1.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","59","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.637289,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 83 20 5,SN8BFL,urban,83,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.550707,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 83 22 2,SN8BFL,urban,83,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"0","0",no,0.550707,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,7.0,"5 and up",2.0,"1-2",0.25,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.5,"2.1-6.0",7.0,"7+",1,29,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 83 22 7,SN81FL,urban,83,22,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,83,kaolack urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,undecided,does not want more kids,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.637289,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"2.1-6.0",16.0,"7+",0,,,,,,no,1,3,2,3,5,2,8,4,10 + 84 1 2,SN81FL,urban,84,1,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.78372,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 84 1 2,SN8BFL,urban,84,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.147203,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 84 3 2,SN8BFL,urban,84,3,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,never,never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,1.147203,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 84 5 2,SN81FL,urban,84,5,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,more than him,does not own,alone only,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"23","20+",23,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.78372,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 84 6 1,SN8BFL,urban,84,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,1.0,1.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,sterilized/infecund,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.147203,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",9.0,"7+",1,32,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 84 8 6,SN8BFL,urban,84,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,84,kaolack urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","69","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"11","5-14",11,"5-14",12,<20,<15,5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.147203,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,24.0,yes,Recieved support,92.0,1.0,15.0,"5 and up",5.0,"5 and up",0.2857142857142857,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.166666666666667,"2.1-6.0",17.0,"7+",0,,,,,,no,1,3,2,3,5,2,8,4,10 + 84 8 8,SN8BFL,urban,84,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,84,kaolack urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","69","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.147203,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,24.0,yes,Recieved support,92.0,1.0,15.0,"5 and up",5.0,"5 and up",0.2857142857142857,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.166666666666667,"2.1-6.0",17.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,2,3 + 84 8 14,SN8BFL,urban,84,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,someone else,husband/ partner alone,someone else,"0","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.147203,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,24.0,yes,Recieved support,92.0,1.0,15.0,"5 and up",5.0,"5 and up",0.2857142857142857,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.166666666666667,"2.1-6.0",17.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 84 9 2,SN81FL,urban,84,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"24",More than 5 years,No,No,No,No,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,other,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","1-3","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",33,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.78372,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,2.0,yes,Recieved support,0.0,0.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 84 9 4,SN81FL,urban,84,9,,,,,0.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",30,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.78372,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,2.0,yes,Recieved support,0.0,0.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 84 11 3,SN81FL,urban,84,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,female,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",19,"15-19",19,<20,"15-19",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.78372,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,30.0,1.0,7.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 84 11 6,SN8BFL,urban,84,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","29",under 30,No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.147203,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"2.1-6.0",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 84 13 5,SN81FL,urban,84,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.78372,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,8.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"2.1-6.0",9.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 84 13 13,SN81FL,urban,84,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,84,kaolack urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,not partnered,No longer with first partner,Yes,Yes,No,No,No,No,often,never,often,never,sometimes,never,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,not married,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"0","0",no,0.78372,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,8.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,8,8 + 84 14 2,SN81FL,urban,84,14,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,alone only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","58","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.78372,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"2.1-6.0",13.0,"7+",1,31,wants no more,wants no more,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 84 15 1,SN81FL,urban,84,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",9,"6+","6+",0,"0",0.0,0.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.78372,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 84 15 1,SN8BFL,urban,84,15,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,84,kaolack urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","63","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.147203,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.6666666666666667,"2.1-6.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 84 15 2,SN8BFL,urban,84,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.147203,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.6666666666666667,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 84 16 3,SN8BFL,urban,84,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,alone only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.147203,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 84 17 2,SN81FL,urban,84,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,84,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"30",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","63","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.78372,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.25,"2.1-6.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 84 17 2,SN8BFL,urban,84,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","54","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.147203,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"2.1-6.0",6.0,"0-7",,,,,,,,1,1,2,1,5,7,6,4,5 + 84 18 4,SN8BFL,urban,84,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Wolof,"19","15-19",19,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.147203,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,9.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"2.1-6.0",16.0,"7+",1,31,wants no more,wants no more,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 84 19 1,SN81FL,urban,84,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","37","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,yes,,,pharmacy,0,1,,0.0,other,"5",1.0,1.0,no,no,no,not at all,not at all,at least once a week,1.0,"2","1",yes,0.78372,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,3.0,"3-4",5.0,"5 and up",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 84 21 6,SN81FL,urban,84,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","44","30-59",Yes,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"15","15-19",15,"15-19",26,"20-29","25-39",2.0,"1-3","2+","2",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.78372,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,6.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"2.1-6.0",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 84 22 4,SN81FL,urban,84,22,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,84,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","60","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.78372,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"2.1-6.0",13.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 85 1 2,SN81FL,urban,85,1,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",6,"6+","6+",1,"1",1.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","70","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.922776,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,5.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4,"2.1-6.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 85 1 2,SN8BFL,urban,85,1,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",1.0,HW did not discuss FP,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",11,"6+","6+",0,"0",0.0,0.0,male,"29",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","66","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",11.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.003261,0.0,,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,70.0,1.0,3.0,"3-4",7.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,5.0,"2.1-6.0",4.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 85 1 8,SN81FL,urban,85,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","31","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.922776,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,5.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 2 2,SN81FL,urban,85,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,1,"1",7,"6+","6+",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","61","60+",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",8.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.922776,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",4.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 85 2 2,SN8BFL,urban,85,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/ partner alone,husband/partner alone,"1-3","1-3","50","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"16","15-19",16,"15-19",16,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.003261,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,62.5,1.0,5.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",12.0,"7+",1,25,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 85 2 8,SN81FL,urban,85,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","28",under 30,No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.922776,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",4.0,"0-7",1,27,wants within 2 years,wants within 2 years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 85 2 8,SN8BFL,urban,85,2,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,someone else,husband/partner alone,currently pregnant,someone else,"1-3","1-3","25",under 30,No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.003261,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,62.5,1.0,5.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 85 3 2,SN81FL,urban,85,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Wolof,"22","20+",22,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.922776,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.4,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 3 2,SN8BFL,urban,85,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Someone else,Currently working,1.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.003261,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,20.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 3 7,SN81FL,urban,85,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","43","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.922776,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.4,"2.1-6.0",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 85 3 10,SN81FL,urban,85,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","39","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.922776,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.4,"2.1-6.0",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 85 4 3,SN8BFL,urban,85,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","72","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",24,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.003261,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,77.27272727272727,1.0,11.0,"5 and up",9.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.75,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 85 4 9,SN81FL,urban,85,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","44","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"0","0",yes,0.922776,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,84.21052631578947,1.0,10.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.1666666666666665,"2.1-6.0",6.0,"0-7",1,35,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 85 4 9,SN8BFL,urban,85,4,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,alone only,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","72","60+",Yes,1.0,no,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",7.0,"7+","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.003261,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,77.27272727272727,1.0,11.0,"5 and up",9.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.75,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 85 4 13,SN8BFL,urban,85,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"22","20+",22,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.003261,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,77.27272727272727,1.0,11.0,"5 and up",9.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.75,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 85 4 16,SN81FL,urban,85,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",2,"1-2",<3,2,"2 or more",1.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","39","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.922776,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,84.21052631578947,1.0,10.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.1666666666666665,"2.1-6.0",6.0,"0-7",1,34,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 85 4 16,SN8BFL,urban,85,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.003261,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,77.27272727272727,1.0,11.0,"5 and up",9.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.75,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 85 5 2,SN81FL,urban,85,5,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.922776,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",3.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 6 5,SN8BFL,urban,85,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,less than once a week,1.0,"1","1",yes,1.003261,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,28.57142857142857,1.0,7.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5555555555555556,"2.1-6.0",16.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 85 6 7,SN8BFL,urban,85,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,someone else,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","34","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.003261,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,28.57142857142857,1.0,7.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5555555555555556,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 6 11,SN8BFL,urban,85,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","46","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"34","20+",34,"20+",35,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.003261,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,28.57142857142857,1.0,7.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5555555555555556,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 7 2,SN81FL,urban,85,7,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","52","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,no,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.922776,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,4.25,"2.1-6.0",9.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 85 7 4,SN8BFL,urban,85,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.003261,1.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.4285714285714286,"2.1-6.0",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 85 7 14,SN81FL,urban,85,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","29",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.922776,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,9.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,4.25,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 8 2,SN81FL,urban,85,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,0.0,"3+",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,jointly only,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","35","30-59",Yes,0.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,not at all,at least once a week,1.0,"0","0",yes,0.922776,1.0,0.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,5.0,"2.1-6.0",0.0,"0-7",1,27,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 85 9 11,SN8BFL,urban,85,9,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.003261,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,73.68421052631578,1.0,13.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.1666666666666665,"2.1-6.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 85 10 2,SN81FL,urban,85,10,1.0,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.922776,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6,"2.1-6.0",7.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 85 11 2,SN8BFL,urban,85,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",12,"6+","6+",0,"0",0.0,0.0,male,"30",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","58","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",12.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.003261,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 85 12 2,SN81FL,urban,85,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,85,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","4+","66","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.922776,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,9.0,"5 and up",11.0,"5 and up",0.5714285714285714,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 85 12 7,SN81FL,urban,85,12,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,85,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","66","60+",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.922776,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,9.0,"5 and up",11.0,"5 and up",0.5714285714285714,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 85 12 12,SN81FL,urban,85,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,both alone and jointly,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","66","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",17,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.922776,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,9.0,"5 and up",11.0,"5 and up",0.5714285714285714,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 85 12 18,SN81FL,urban,85,12,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","66","60+",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"26","20+",26,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.922776,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,9.0,"5 and up",11.0,"5 and up",0.5714285714285714,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 85 13 7,SN81FL,urban,85,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,85,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,someone else,respondent and husband/ partner,someone else,"0","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"11","5-14",11,"5-14",17,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,0.922776,0.0,,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.57142857142857,1.0,10.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"2.1-6.0",16.0,"7+",,,,,,,,1,1,2,1,5,7,6,4,5 + 85 13 9,SN81FL,urban,85,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,1.0,"3+",0.0,No HW visit,not working,not working,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.922776,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.57142857142857,1.0,10.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"2.1-6.0",16.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 85 14 3,SN8BFL,urban,85,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.003261,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 85 15 1,SN81FL,urban,85,15,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",14,<20,<15,3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,don't know,don't know,don't know,not at all,not at all,not at all,0.0,"1","1",yes,0.922776,0.0,0.0,,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 85 15 2,SN8BFL,urban,85,15,0.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,0.0,male,"23",More than 5 years,Yes,Yes,No,No,No,No,often,never,often,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,currently pregnant,husband/partner alone,"1-3","1-3","44","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"1","1",yes,1.003261,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 85 16 4,SN81FL,urban,85,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.922776,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"2.1-6.0",12.0,"7+",1,30,wants within 2 years,wants within 2 years,0.0,0.0,no,1,2,3,5,4,3,3,1,3 + 85 16 6,SN8BFL,urban,85,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,alone only,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"17","15-19",17,"15-19",34,"30+","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,1.003261,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",11.0,"7+",2,24,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 85 17 2,SN8BFL,urban,85,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,don't know,does not own,alone only,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Poular,"18","15-19",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,1.003261,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"2.1-6.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 85 17 3,SN8BFL,urban,85,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,less than once a week,1.0,"1","1",yes,1.003261,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 18 1,SN8BFL,urban,85,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.003261,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.4,"2.1-6.0",13.0,"7+",0,,,,,,yes,2,2,4,2,6,5,5,7,2 + 85 18 5,SN81FL,urban,85,18,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","51","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.922776,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.6666666666666665,"2.1-6.0",7.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 85 19 3,SN8BFL,urban,85,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,not at all,1.0,"1","1",yes,1.003261,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,92.3076923076923,1.0,6.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 85 19 6,SN81FL,urban,85,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",0,"0",<3,1,"1",1.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"23","20+",23,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"0","0",no,0.922776,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.25,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 19 10,SN81FL,urban,85,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,respondent alone,currently pregnant,respondent alone,"0","4+","46","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.922776,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.25,"2.1-6.0",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 85 20 1,SN81FL,urban,85,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","41","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"10","5-14",10,"5-14",11,<20,<15,2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.922776,1.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",8.0,"7+",1,27,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,2,3,5,2,8,4,10 + 85 20 2,SN8BFL,urban,85,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",,Inconsistent or don't know,24,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.003261,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 85 21 2,SN81FL,urban,85,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.922776,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.1666666666666665,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 85 21 2,SN8BFL,urban,85,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",2,"2 or more",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.003261,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 85 21 6,SN81FL,urban,85,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.922776,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.1666666666666665,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 85 22 2,SN81FL,urban,85,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,,not at all,at least once a week,less than once a week,1.0,"0","0",yes,0.922776,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",4.0,"0-7",1,26,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 85 22 2,SN8BFL,urban,85,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","41","30-59",Yes,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",15,"15-19",17,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,1.003261,0.0,,,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.21052631578947,1.0,12.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.6,"2.1-6.0",15.0,"7+",1,31,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 85 22 8,SN8BFL,urban,85,22,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"21","20+",21,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"2","1",yes,1.003261,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.21052631578947,1.0,12.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,3.6,"2.1-6.0",15.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 85 22 9,SN81FL,urban,85,22,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,85,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"25","20+",,Inconsistent or don't know,20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"0","0",yes,0.922776,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",4.0,"0-7",1,28,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 94 1 1,SN8BFL,urban,94,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",2,"2 or more",1.0,1.0,female,"20",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","45","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.104714,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,20.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",9.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 94 2 5,SN8BFL,urban,94,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.104714,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"2.1-6.0",13.0,"7+",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 94 3 2,SN8BFL,urban,94,3,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.104714,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,9.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 94 3 8,SN8BFL,urban,94,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.104714,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,9.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 94 3 10,SN8BFL,urban,94,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"22","20+",22,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.104714,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,9.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 94 4 2,SN8BFL,urban,94,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,sales,sales,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","37","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.104714,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,69.23076923076923,1.0,7.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",10.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 94 4 6,SN8BFL,urban,94,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","48","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,don't know,at least once a week,not at all,at least once a week,1.0,"1","1",yes,1.104714,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,69.23076923076923,1.0,7.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 94 5 1,SN8BFL,urban,94,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,94,kaolack urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,0,"0",7,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent alone,husband/partner alone,husband/ partner alone,respondent alone,"0","1-3","70","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",9.0,"7+","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.104714,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 94 6 1,SN8BFL,urban,94,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",8,"6+","6+",1,"1",1.0,1.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","52","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",10.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,1,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.104714,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"2.1-6.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,1,5,6,4,8,8 + 94 10 2,SN8BFL,urban,94,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"15","15-19",15,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.104714,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",1.0,"0-7",1,35,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 94 11 3,SN8BFL,urban,94,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","46","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,1.104714,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,3.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 94 12 2,SN8BFL,urban,94,12,1.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Worked in the past year,0.0,All year,Didn't work last 12 months,,not working,not working,husband no earnings,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"1-3","1-3","61","60+",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.104714,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",2.0,"0-7",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 94 13 6,SN8BFL,urban,94,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.104714,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,95.83333333333334,1.0,14.0,"5 and up",6.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",7.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 94 13 12,SN8BFL,urban,94,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,1.104714,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,95.83333333333334,1.0,14.0,"5 and up",6.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 94 13 14,SN8BFL,urban,94,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","30","30-59",Yes,0.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.104714,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,95.83333333333334,1.0,14.0,"5 and up",6.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 94 13 18,SN8BFL,urban,94,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Wolof,"14","5-14",14,"5-14",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.104714,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,95.83333333333334,1.0,14.0,"5 and up",6.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",7.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 94 14 1,SN8BFL,urban,94,14,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,94,kaolack urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",6,"6+","6+",2,"2 or more",1.0,1.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",8.0,"7+","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.104714,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 94 14 6,SN8BFL,urban,94,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,2,"2 or more",1.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.104714,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",9.0,"7+",1,33,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 94 16 4,SN8BFL,urban,94,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.104714,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"2.1-6.0",18.0,"7+",1,31,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 94 16 7,SN8BFL,urban,94,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.104714,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"2.1-6.0",18.0,"7+",1,28,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 94 17 6,SN8BFL,urban,94,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,No,No,Yes,No,No,No,never,never,never,never,never,never,never,never,sometimes,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.104714,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7142857142857142,"2.1-6.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 94 17 9,SN8BFL,urban,94,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Wolof,"23","20+",23,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.104714,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7142857142857142,"2.1-6.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 94 18 8,SN8BFL,urban,94,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.104714,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,14.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"2.1-6.0",12.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 94 21 5,SN8BFL,urban,94,21,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",9,"6+","6+",0,"0",0.0,1.0,female,"20",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","50","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.104714,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",7.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8571428571428572,"2.1-6.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 94 21 12,SN8BFL,urban,94,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.104714,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",7.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8571428571428572,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 94 22 2,SN8BFL,urban,94,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,94,kaolack urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","55","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.104714,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",1,44,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 97 1 6,SN8BFL,urban,97,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,7,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",20,"20+",25,"20-29","25-39",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.968472,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,72.22222222222221,1.0,8.0,"5 and up",10.0,"5 and up",1.4,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 97 1 7,SN81FL,urban,97,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"33","20+",33,"20+",34,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.638066,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,8.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.2,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 97 1 9,SN8BFL,urban,97,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,7,"3+",5,"3-5","3-5",0,"0",0.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"14","5-14",14,"5-14",16,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.968472,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,72.22222222222221,1.0,8.0,"5 and up",10.0,"5 and up",1.4,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 97 1 13,SN8BFL,urban,97,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,97,this urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,alone only,7,"3+",4,"3-5","3-5",1,"1",1.0,1.0,male,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","41","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,0.968472,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,72.22222222222221,1.0,8.0,"5 and up",10.0,"5 and up",1.4,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 97 2 2,SN8BFL,urban,97,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","42","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"29","20+",29,"20+",30,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.968472,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",3,17,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 97 2 3,SN81FL,urban,97,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,97,this urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",1,"1",1.0,0.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","36","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,1.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.638066,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,88.0,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",5.0,"0-7",3,20,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 97 2 7,SN81FL,urban,97,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.638066,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,88.0,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",5.0,"0-7",1,26,unsure timing,"wants, unsure timing",1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 97 2 7,SN8BFL,urban,97,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,alone only,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","25",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"33","20+",33,"20+",34,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.968472,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",2,26,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 97 2 13,SN81FL,urban,97,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","30","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"19","15-19",15,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.638066,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,88.0,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",5.0,"0-7",1,21,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 97 3 2,SN8BFL,urban,97,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,Yes,Yes,Yes,Yes,Yes,Yes,often,often,often,often,often,often,never,never,often,often,often,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","33","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.968472,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,10.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 97 4 2,SN81FL,urban,97,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,yes,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.638066,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,3.0,"3-4",10.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 97 4 6,SN81FL,urban,97,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.638066,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,3.0,"3-4",10.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 97 5 1,SN81FL,urban,97,5,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,0,"0",5,"3-5","3-5",2,"2 or more",1.0,0.0,female,,No longer with first partner,Yes,Yes,No,Yes,No,No,"yes, but not in the last 12 months",never,never,never,sometimes,never,never,never,never,never,never,never,No,No,"yes, but don't remember when",never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","45","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"13","5-14",,Inconsistent or don't know,11,<20,<15,8.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,1.638066,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 97 7 2,SN8BFL,urban,97,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,0,"0",2,"1-2",<3,1,"1",1.0,0.0,male,"20",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","56","30-59",No,1.0,no,no,0.0,,,,,,,christian,0.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"24","20+",24,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.968472,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,9.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 97 7 7,SN81FL,urban,97,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","28",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.638066,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,8.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 97 8 1,SN8BFL,urban,97,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","53","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.968472,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.3333333333333333,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 97 8 2,SN81FL,urban,97,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","39","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.638066,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,4.333333333333333,"0-2.0",6.0,"0-7",1,28,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 97 8 3,SN8BFL,urban,97,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","30","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.968472,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.3333333333333333,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 97 9 4,SN81FL,urban,97,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","23",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",16,"15-19",19,<20,"15-19",2.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,1.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.638066,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,5.0,"5 and up",6.0,"5 and up",2.5,3.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 97 9 7,SN81FL,urban,97,9,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,Yes,No,Yes,Yes,Yes,No,never,never,never,sometimes,often,never,never,never,often,often,often,often,No,No,"12+ months ago","0-11 months ago",No,No,No,No,No,No,No,No,No,yes,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.638066,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,5.0,"5 and up",6.0,"5 and up",2.5,3.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"0-2.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 97 10 4,SN81FL,urban,97,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,1.638066,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,8.0,"5 and up",8.0,"5 and up",2.5,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",5.0,"0-7",1,33,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 97 10 9,SN81FL,urban,97,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,1.638066,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,8.0,"5 and up",8.0,"5 and up",2.5,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",5.0,"0-7",1,27,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 97 11 2,SN81FL,urban,97,11,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,other,other,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",9,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","70","60+",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",14,<20,<15,9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"1","1",yes,1.638066,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,83.33333333333334,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",9.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 97 12 2,SN81FL,urban,97,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"1","1",yes,1.638066,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"0-2.0",5.0,"0-7",1,25,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 97 12 11,SN8BFL,urban,97,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","33","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,1.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.968472,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,10.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.0,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 97 13 4,SN81FL,urban,97,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","32","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.638066,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,6.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.8,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 97 13 8,SN8BFL,urban,97,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","32","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.968472,1.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",13.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 97 13 11,SN8BFL,urban,97,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","29",under 30,No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,0.968472,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 97 13 13,SN81FL,urban,97,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.638066,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,6.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.8,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 97 14 2,SN81FL,urban,97,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","58","30-59",No,1.0,yes,no,0.0,,,,,,,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",,Inconsistent or don't know,20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.638066,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"0-2.0",10.0,"7+",1,30,wants no more,wants no more,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 97 14 9,SN8BFL,urban,97,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","35","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.968472,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,93.33333333333333,1.0,11.0,"5 and up",4.0,"3-4",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.25,"0-2.0",5.0,"0-7",1,26,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 97 15 3,SN81FL,urban,97,15,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,1.638066,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,87.5,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6,"0-2.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 97 16 4,SN81FL,urban,97,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","37","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,1.638066,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,71.42857142857143,1.0,7.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.3333333333333335,"0-2.0",10.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 97 16 9,SN81FL,urban,97,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","27",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,less than once a week,1.0,"1","1",yes,1.638066,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,71.42857142857143,1.0,7.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.3333333333333335,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 97 16 11,SN8BFL,urban,97,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.968472,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,8.0,"5 and up",8.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",11.0,"7+",1,26,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 97 16 14,SN8BFL,urban,97,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.968472,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,8.0,"5 and up",8.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 97 18 3,SN8BFL,urban,97,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.968472,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.95238095238095,1.0,12.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.3333333333333335,"0-2.0",8.0,"7+",0,,,,,,no,2,1,3,1,5,6,4,8,8 + 97 18 4,SN81FL,urban,97,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 12 months,,other,other/dk,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.638066,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,92.85714285714286,1.0,8.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"0-2.0",6.0,"0-7",1,32,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 97 18 8,SN81FL,urban,97,18,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,don't know,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","39","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,1.638066,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,92.85714285714286,1.0,8.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"0-2.0",6.0,"0-7",0,,,,,,no,1,3,2,3,5,2,8,4,10 + 97 18 10,SN8BFL,urban,97,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.968472,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.95238095238095,1.0,12.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.3333333333333335,"0-2.0",8.0,"7+",1,25,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 97 18 14,SN8BFL,urban,97,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,jointly only,does not own,4,"3+",6,"6+","6+",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent and husband/partner,respondent and husband/ partner,respondent alone,"1-3","4+","54","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",7.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.968472,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.95238095238095,1.0,12.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.3333333333333335,"0-2.0",8.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 97 19 4,SN81FL,urban,97,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.638066,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.0,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 97 19 6,SN81FL,urban,97,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,No,No,Yes,Yes,Yes,Yes,never,never,never,never,never,never,never,never,sometimes,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,0.0,,,,not at all,not at all,less than once a week,1.0,"1","1",yes,1.638066,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.0,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 97 20 3,SN8BFL,urban,97,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",20,"20+",20,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,0.0,,,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.968472,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,5.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.0,"0-2.0",6.0,"0-7",1,26,wants within 2 years,wants within 2 years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 97 20 4,SN81FL,urban,97,20,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,97,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","63","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,1.638066,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",12.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 97 21 1,SN81FL,urban,97,21,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,"23",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","61","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.638066,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 97 21 3,SN8BFL,urban,97,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"17",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.968472,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,84.61538461538461,1.0,6.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 97 21 11,SN8BFL,urban,97,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"25","20+",17,"15-19",22,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.968472,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,84.61538461538461,1.0,6.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,4,4,1,7,9 + 97 22 1,SN81FL,urban,97,22,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","50","30-59",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"13","5-14",13,"5-14",14,<20,<15,8.0,"7+","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.638066,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,6.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",11.0,"7+",0,,,,,,no,1,3,2,3,5,2,8,4,10 + 97 22 7,SN81FL,urban,97,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,97,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"12","5-14",12,"5-14",28,"20-29","25-39",1.0,"1-3","1","3+",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.638066,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,6.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",11.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,6 + 97 22 8,SN81FL,urban,97,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,97,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","42","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"11","5-14",11,"5-14",13,<20,<15,5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.638066,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,6.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",11.0,"7+",0,,,,,,no,2,1,3,1,5,6,4,8,8 + 98 1 1,SN81FL,urban,98,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,98,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,both alone and jointly,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.941412,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 98 2 2,SN8BFL,urban,98,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.390228,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",0.0,"0-7",1,37,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 98 2 3,SN81FL,urban,98,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,husband/ partner alone,respondent alone,"0","4+","59","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"0-2.0",9.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 98 2 6,SN81FL,urban,98,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","36","30-59",Yes,1.0,yes,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.941412,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 98 3 2,SN8BFL,urban,98,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,both alone and jointly,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.390228,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.3333333333333335,"0-2.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 98 3 7,SN81FL,urban,98,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",8.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 98 3 13,SN81FL,urban,98,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","36","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.941412,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",8.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 98 4 1,SN81FL,urban,98,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,98,this urbain,1.0,"1","1",First wife,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,both alone and jointly,does not own,0,"0",6,"6+","6+",1,"1",1.0,1.0,female,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","58","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 98 5 1,SN8BFL,urban,98,5,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.390228,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 98 6 2,SN81FL,urban,98,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","49","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.941412,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"0-2.0",5.0,"0-7",1,27,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 98 6 2,SN8BFL,urban,98,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,98,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/ partner alone,husband/partner alone,"1-3","0","70","60+",No,0.0,no,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.390228,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,7.0,"5 and up",2.0,"1-2",0.16666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 98 7 2,SN81FL,urban,98,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",7,"6+","6+",1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","56","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",,Inconsistent or don't know,13,<20,<15,8.0,"7+","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.941412,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,3.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",9.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 98 7 2,SN8BFL,urban,98,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","39","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.390228,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.6666666666666667,"0-2.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 98 8 2,SN8BFL,urban,98,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,someone else,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","61","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.390228,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 98 9 2,SN81FL,urban,98,9,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","39","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,7.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8571428571428572,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 98 9 6,SN81FL,urban,98,9,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.941412,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,7.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8571428571428572,"0-2.0",6.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 98 9 12,SN81FL,urban,98,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","35","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,7.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8571428571428572,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 98 11 1,SN81FL,urban,98,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 98 11 4,SN8BFL,urban,98,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.390228,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.26086956521739,1.0,12.0,"5 and up",8.0,"5 and up",1.1666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.6,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 98 11 7,SN8BFL,urban,98,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,1.390228,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.26086956521739,1.0,12.0,"5 and up",8.0,"5 and up",1.1666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.6,"0-2.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 98 11 14,SN8BFL,urban,98,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,7,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","68","60+",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.390228,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.26086956521739,1.0,12.0,"5 and up",8.0,"5 and up",1.1666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.6,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 98 11 21,SN8BFL,urban,98,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.390228,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.26086956521739,1.0,12.0,"5 and up",8.0,"5 and up",1.1666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.6,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 98 13 2,SN81FL,urban,98,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.941412,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 98 14 1,SN81FL,urban,98,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,1.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","67","60+",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",16,"15-19",18,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",7.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,yes,1,3,2,3,2,2,8,4,10 + 98 15 2,SN81FL,urban,98,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,98,this urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,10,"3+",8,"6+","6+",1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,0.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.941412,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.857142857142857,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 98 15 3,SN8BFL,urban,98,15,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,female,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.390228,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 98 15 7,SN8BFL,urban,98,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,1.390228,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 98 15 9,SN81FL,urban,98,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,98,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,10,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"2","1",yes,1.941412,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.857142857142857,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 98 15 18,SN81FL,urban,98,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,10,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.941412,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.857142857142857,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 98 15 24,SN81FL,urban,98,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,98,this urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,10,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.941412,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.857142857142857,"0-2.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 98 15 29,SN81FL,urban,98,15,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,10,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"11",More than 5 years,No,Yes,No,No,No,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Arabic,"16","15-19",16,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.941412,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.857142857142857,"0-2.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 98 15 33,SN81FL,urban,98,15,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,98,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,10,"3+",0,"0",<3,1,"1",1.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.857142857142857,"0-2.0",8.0,"7+",,,,,,,,1,2,4,5,6,3,3,1,6 + 98 16 1,SN8BFL,urban,98,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","26",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.390228,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,1.0,"0-1",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,7.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 98 16 5,SN81FL,urban,98,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,98,this urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"20","20+",,Inconsistent or don't know,21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",1.0,1.0,yes,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.941412,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,4,6,5,5,1,2 + 98 16 7,SN81FL,urban,98,16,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,other,other/dk,more than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Wolof,"33","20+",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","3+",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.941412,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 98 17 2,SN81FL,urban,98,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.941412,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",16.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 98 17 2,SN8BFL,urban,98,17,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,more than him,jointly only,does not own,1,"1",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"29",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.390228,0.0,,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 98 18 2,SN81FL,urban,98,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.941412,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",18.0,"7+",1,31,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 98 18 2,SN8BFL,urban,98,18,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","60","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"21","20+",19,"15-19",22,"20-29","20-24",5.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.390228,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 98 19 2,SN81FL,urban,98,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",,Inconsistent or don't know,22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,1.941412,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 98 20 2,SN8BFL,urban,98,20,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","54","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.390228,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,8.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",1,20,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 98 20 3,SN81FL,urban,98,20,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,husband/partner alone,respondent and husband/ partner,other,"0","1-3","47","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,9.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.7142857142857142,"0-2.0",12.0,"7+",0,34,,,,,yes,1,3,1,5,3,3,3,9,1 + 98 20 6,SN81FL,urban,98,20,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,respondent alone,husband/partner alone,"0","1-3","15",under 30,No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"32","20+",32,"20+",35,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.941412,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,9.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.7142857142857142,"0-2.0",12.0,"7+",0,34,,,,,yes,1,3,1,5,3,3,3,9,1 + 98 21 3,SN81FL,urban,98,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,don't know,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","45","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.941412,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,93.33333333333333,1.0,11.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,1.1666666666666667,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 98 21 5,SN81FL,urban,98,21,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,98,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","55","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.941412,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,93.33333333333333,1.0,11.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,1.1666666666666667,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 99 1 2,SN8BFL,urban,99,1,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,99,this urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",8,"6+","6+",1,"1",1.0,0.0,male,"33",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","63","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",10.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.830234,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,8.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"0-2.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 99 3 3,SN8BFL,urban,99,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.830234,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,7.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.8,"0-2.0",10.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 99 4 2,SN81FL,urban,99,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","44","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.428165,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",0.0,"0-7",1,37,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 99 4 2,SN8BFL,urban,99,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","57","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.830234,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,16.0,"5 and up",4.0,"3-4",0.18181818181818182,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6,"0-2.0",15.0,"7+",1,36,wants no more,wants no more,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 99 4 6,SN8BFL,urban,99,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.830234,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,16.0,"5 and up",4.0,"3-4",0.18181818181818182,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6,"0-2.0",15.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 99 4 20,SN8BFL,urban,99,4,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","24",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.830234,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,16.0,"5 and up",4.0,"3-4",0.18181818181818182,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6,"0-2.0",15.0,"7+",1,28,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,3,3,5,7,8,4,10 + 99 5 2,SN8BFL,urban,99,5,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,99,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",8,"6+","6+",1,"1",1.0,0.0,male,"23",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","56","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",16,"15-19",17,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.830234,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.25,"0-2.0",3.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 99 5 8,SN8BFL,urban,99,5,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,99,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","56","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.25,"0-2.0",3.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 99 6 2,SN8BFL,urban,99,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,99,this urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",8,"6+","6+",1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","55","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",19,"15-19",21,"20-29","20-24",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.830234,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",12.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,5.6,"0-2.0",10.0,"7+",3,32,unsure timing,undecided,1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 99 6 10,SN8BFL,urban,99,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,99,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",8,"6+","6+",1,"1",1.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","55","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",23,"20-29","20-24",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.830234,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",12.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,5.6,"0-2.0",10.0,"7+",3,32,unsure timing,undecided,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 99 6 18,SN8BFL,urban,99,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,both alone and jointly,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.830234,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",12.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,5.6,"0-2.0",10.0,"7+",3,32,unsure timing,undecided,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 99 7 2,SN81FL,urban,99,7,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.428165,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 99 8 5,SN8BFL,urban,99,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,89.47368421052632,1.0,13.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.375,"0-2.0",13.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 99 8 11,SN8BFL,urban,99,8,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,99,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","70","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.830234,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,89.47368421052632,1.0,13.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.375,"0-2.0",13.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 99 9 1,SN81FL,urban,99,9,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","44","30-59",No,1.0,yes,no,1.0,,,,,,,christian,0.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"37","20+",24,"20+",37,"30+","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.428165,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 99 9 2,SN8BFL,urban,99,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,2.0,"2",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.5,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 99 10 4,SN8BFL,urban,99,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,99,this urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,alone only,1,"1",5,"3-5","3-5",2,"2 or more",1.0,0.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",15,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.830234,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,10.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.333333333333333,"0-2.0",7.0,"7+",2,23,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 99 10 10,SN8BFL,urban,99,10,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,alone only,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","42","30-59",Yes,1.0,no,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.830234,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,10.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.333333333333333,"0-2.0",7.0,"7+",2,23,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 99 12 2,SN8BFL,urban,99,12,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",7,"6+","6+",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","52","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"8","5-14",8,"5-14",10,<20,<15,9.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,25.0,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",14.0,"7+",1,24,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,1,3,1,5,6,4,8,8 + 99 13 7,SN8BFL,urban,99,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","38","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","2",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,12.0,"5 and up",8.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4285714285714284,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 99 13 14,SN8BFL,urban,99,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",29,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,12.0,"5 and up",8.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4285714285714284,"0-2.0",10.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 99 13 18,SN8BFL,urban,99,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","1-3","47","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,12.0,"5 and up",8.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4285714285714284,"0-2.0",10.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 99 15 1,SN81FL,urban,99,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,alone only,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"21","20+",21,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,1.428165,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 99 15 3,SN8BFL,urban,99,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","49","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.830234,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.47058823529412,1.0,7.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"0-2.0",6.0,"0-7",,,,,,,,1,1,3,3,5,7,8,4,10 + 99 15 10,SN8BFL,urban,99,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.47058823529412,1.0,7.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2,"0-2.0",6.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 99 17 1,SN81FL,urban,99,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"26","20+",26,"20+",26,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.428165,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.0,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 99 17 2,SN8BFL,urban,99,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"24","20+",24,"20+",24,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.830234,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 99 17 8,SN8BFL,urban,99,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,Yes,Yes,Yes,No,No,Yes,sometimes,never,sometimes,sometimes,never,never,never,never,sometimes,sometimes,never,sometimes,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent alone,someone else,respondent alone,respondent and husband/ partner,someone else,"0","1-3","32","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 99 18 1,SN81FL,urban,99,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,not married,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.428165,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,6.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,4 + 99 18 6,SN8BFL,urban,99,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,99,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent and husband/ partner,respondent alone,"1-3","1-3","54","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,5.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.25,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 99 19 4,SN8BFL,urban,99,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,99,this urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","50","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",41,"30+","40+",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,26.31578947368421,1.0,9.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.111111111111111,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 99 19 12,SN8BFL,urban,99,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,26.31578947368421,1.0,9.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.111111111111111,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 99 20 2,SN81FL,urban,99,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","45","30-59",Yes,1.0,yes,no,0.0,,,,,,,christian,0.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"32","20+",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","3+",no one,TBA / no one,have another,don't know,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.428165,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.0,"0-2.0",12.0,"7+",1,19,unsure timing,"wants, unsure timing",1.0,1.0,yes,1,3,2,3,2,2,8,4,10 + 99 20 3,SN81FL,urban,99,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,0.0,christian,0.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",20,"20+",24,"20-29","20-24",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","2",<3,"0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"2","1",yes,1.428165,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.0,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 99 20 6,SN81FL,urban,99,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","28",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,christian,0.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,yes,,,pharmacy,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.428165,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.0,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 99 20 6,SN8BFL,urban,99,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","25",under 30,No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,1.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.75,1.0,8.0,"5 and up",8.0,"5 and up",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.2857142857142856,"0-2.0",12.0,"7+",1,27,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 99 20 8,SN8BFL,urban,99,20,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,1.0,"yes, child was treated",0.0,0.0,1.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.830234,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.75,1.0,8.0,"5 and up",8.0,"5 and up",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.2857142857142856,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,2,3,5,4,3,3,1,3 + 99 21 2,SN81FL,urban,99,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,don't know,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.428165,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 99 21 6,SN8BFL,urban,99,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,No,No,Yes,Yes,No,No,never,never,never,never,never,never,never,never,sometimes,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,0.0,"yes, child was treated",0.0,1.0,0.0,1.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 99 22 2,SN81FL,urban,99,22,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","58","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.428165,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,0.0,0.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 99 22 2,SN8BFL,urban,99,22,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","62","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.830234,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,6.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"0-2.0",15.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 99 22 8,SN8BFL,urban,99,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,99,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.830234,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,6.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"0-2.0",15.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 100 5 9,SN8BFL,urban,100,5,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,100,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"1","1",yes,3.803455,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,5.0,"5 and up",8.0,"5 and up",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.5,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 100 9 4,SN8BFL,urban,100,9,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,100,this urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,7,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Serer,"16","15-19",16,"15-19",18,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.803455,0.0,,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,10.0,"5 and up",10.0,"5 and up",1.1666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.8,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 100 9 9,SN8BFL,urban,100,9,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,100,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",7,"6+","6+",0,"0",0.0,1.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",0.0,0.0,,,,not at all,not at all,not at all,0.0,"2","1",yes,3.803455,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,10.0,"5 and up",10.0,"5 and up",1.1666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.8,"0-2.0",12.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 100 9 18,SN8BFL,urban,100,9,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,100,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",4,"3-5","3-5",1,"1",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,3.803455,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,10.0,"5 and up",10.0,"5 and up",1.1666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.8,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 100 9 23,SN8BFL,urban,100,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,100,this urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,7,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","41","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Serer,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,3.803455,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,10.0,"5 and up",10.0,"5 and up",1.1666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.8,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 100 11 1,SN8BFL,urban,100,11,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,100,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,3.803455,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,11.11111111111111,1.0,3.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 100 12 2,SN8BFL,urban,100,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,100,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,jointly only,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,3.803455,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.25,"0-2.0",18.0,"7+",1,29,wants in 2+ years,wants after 2+ years,0.0,1.0,no,2,1,3,4,1,7,7,3,8 + 100 13 1,SN8BFL,urban,100,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,100,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,1.0,female,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,3.803455,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 100 14 2,SN8BFL,urban,100,14,,,,,0.0,0.0,,1.0,0.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,100,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"1-3","1-3","46","30-59",No,1.0,yes,yes,1.0,,,,,,,christian,0.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",27,"20+",30,"30+","25-39",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,3.803455,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,0.5,"0-2.0",18.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 100 15 1,SN8BFL,urban,100,15,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,100,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",8,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","53","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",9.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,3.803455,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,66.66666666666666,1.0,2.0,"2",7.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 100 16 11,SN8BFL,urban,100,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,100,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.803455,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,69.23076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",13.0,"7+",1,33,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 100 17 1,SN8BFL,urban,100,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,100,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,clerical,professional/mangerial/ clerical,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"10",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.803455,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,53.84615384615385,1.0,6.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 100 18 2,SN8BFL,urban,100,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","62","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,3.803455,0.0,1.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,7.0,"5 and up",2.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",15.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 100 19 1,SN8BFL,urban,100,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",32,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,3.803455,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,42.857142857142854,1.0,4.0,"3-4",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 100 21 1,SN8BFL,urban,100,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,100,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,unskilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,1.0,female,"26",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","56","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,3.803455,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 104 1 2,SN81FL,urban,104,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.913275,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 104 3 4,SN81FL,urban,104,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","31","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.913275,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",14.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 104 4 1,SN81FL,urban,104,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,not at all,1.0,"2","1",yes,1.913275,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",4.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 104 5 2,SN81FL,urban,104,5,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","51","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.913275,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.8,"0-2.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 104 6 2,SN81FL,urban,104,6,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,services,service/domestic,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","23",under 30,No,1.0,yes,no,0.0,"yes, child was treated",0.0,1.0,0.0,1.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.913275,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",8.0,"7+",1,20,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 104 6 10,SN81FL,urban,104,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,skilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.913275,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",8.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 104 7 5,SN81FL,urban,104,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.913275,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 104 8 3,SN81FL,urban,104,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","43","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.913275,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,5.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5,"0-2.0",9.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 104 10 2,SN81FL,urban,104,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,alone only,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.913275,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,7.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 104 10 8,SN81FL,urban,104,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","46","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,1.913275,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,7.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 104 12 4,SN81FL,urban,104,12,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.913275,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,7.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.3333333333333333,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 104 12 8,SN81FL,urban,104,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,104,this urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","53","30-59",Yes,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",38,"30+","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.913275,1.0,,,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,7.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.3333333333333333,"0-2.0",12.0,"7+",2,35,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,2,3 + 104 14 2,SN81FL,urban,104,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,2.0,1.0,2.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,1.913275,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",8.0,"5 and up",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,4.666666666666667,"0-2.0",5.0,"0-7",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 104 16 7,SN81FL,urban,104,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.913275,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,7.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.25,"0-2.0",12.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 104 16 11,SN81FL,urban,104,16,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,alone only,3,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","1-3","44","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.913275,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,7.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.25,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 104 17 3,SN81FL,urban,104,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.913275,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,1.0,yes,Recieved support,80.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",2.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 104 18 1,SN81FL,urban,104,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",6,"6+","6+",1,"1",1.0,0.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","65","60+",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.913275,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,4.0,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 104 19 2,SN81FL,urban,104,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.913275,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",16.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 104 19 6,SN81FL,urban,104,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,104,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","46","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.913275,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 104 21 3,SN81FL,urban,104,21,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,104,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,female,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Wolof,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"0","0",yes,1.913275,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 108 1 4,SN8BFL,urban,108,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"30","20+",30,"20+",31,"30+","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.632796,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,11.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,4.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 108 1 15,SN8BFL,urban,108,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,11.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,4.0,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 108 2 2,SN81FL,urban,108,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","67","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.78339,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 108 2 3,SN8BFL,urban,108,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","34","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,8.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.25,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 108 2 7,SN8BFL,urban,108,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","38","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,1.632796,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,8.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.25,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 108 3 8,SN81FL,urban,108,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.78339,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,61.53846153846154,1.0,10.0,"5 and up",3.0,"3-4",0.2,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",16.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 108 3 8,SN8BFL,urban,108,3,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,14.0,"5 and up",6.0,"5 and up",0.8333333333333334,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7777777777777777,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 108 3 16,SN8BFL,urban,108,3,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","34","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.632796,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,14.0,"5 and up",6.0,"5 and up",0.8333333333333334,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7777777777777777,"0-2.0",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 108 4 2,SN81FL,urban,108,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.78339,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 108 4 2,SN8BFL,urban,108,4,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,108,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",2,"1-2",<3,1,"1",1.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.632796,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.3333333333333333,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 108 5 3,SN81FL,urban,108,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,108,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",2,"1-2",<3,1,"1",1.0,0.0,female,,No longer with first partner,No,Yes,No,Yes,Yes,Yes,sometimes,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","15",under 30,Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.78339,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 108 6 4,SN8BFL,urban,108,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,2,2,4,5,6,5,5,1,2 + 108 8 1,SN81FL,urban,108,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Worked in the past year,0.0,All year,Didn't work last 12 months,,not working,not working,husband no earnings,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","55","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Wolof,"19","15-19",19,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,1.78339,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",7.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 108 8 13,SN8BFL,urban,108,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.632796,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,14.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.8181818181818181,"0-2.0",16.0,"7+",0,26,,,,,no,2,1,3,4,1,7,7,3,8 + 108 9 2,SN81FL,urban,108,9,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,1.78339,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,9.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 108 10 4,SN8BFL,urban,108,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,13.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.25,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 108 10 9,SN8BFL,urban,108,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,someone else,husband/partner alone,respondent and husband/ partner,someone else,"1-3","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,13.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.25,"0-2.0",13.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 108 10 18,SN8BFL,urban,108,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,13.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.25,"0-2.0",13.0,"7+",1,32,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 108 10 23,SN8BFL,urban,108,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,alone only,6,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,someone else,husband/partner alone,respondent and husband/ partner,someone else,"1-3","0","46","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,13.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.25,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 108 10 26,SN8BFL,urban,108,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,6,"3+",3,"3-5","3-5",3,"2 or more",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","58","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"23","20+",23,"20+",24,"20-29","20-24",7.0,"7+","2+","2",no one,TBA / no one,have another,,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.632796,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,13.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,12,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.25,"0-2.0",13.0,"7+",1,38,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 108 11 3,SN81FL,urban,108,11,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",6,"6+","6+",1,"1",1.0,1.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","48","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"22","20+",18,"15-19",20,"20-29","20-24",7.0,"7+","2+","2",no one,TBA / no one,have another,,More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,1.78339,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.3333333333333335,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 108 11 9,SN81FL,urban,108,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",18,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.78339,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.3333333333333335,"0-2.0",6.0,"0-7",,,,,,,,2,2,4,2,6,4,1,7,9 + 108 11 11,SN8BFL,urban,108,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","60","60+",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"28","20+",28,"20+",29,"20-29","25-39",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"4",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.75,1.0,11.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 108 12 2,SN81FL,urban,108,12,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",7,"6+","6+",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",8.0,"7+","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.78339,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.3333333333333335,"0-2.0",12.0,"7+",1,29,unsure timing,"wants, unsure timing",1.0,1.0,yes,1,3,1,5,3,3,3,2,3 + 108 12 2,SN8BFL,urban,108,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"4+","1-3","57","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.632796,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.5,"0-2.0",3.0,"0-7",1,28,unsure timing,undecided,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 108 13 2,SN81FL,urban,108,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.78339,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 108 13 2,SN8BFL,urban,108,13,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"17",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.632796,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.4285714285714284,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 108 13 14,SN8BFL,urban,108,13,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.4285714285714284,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 108 15 2,SN8BFL,urban,108,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,1.0,1.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"21","20+",21,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,1.632796,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6,"0-2.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 108 15 6,SN81FL,urban,108,15,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,108,this urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",8,"6+","6+",1,"1",1.0,1.0,female,"33",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Wolof,"12","5-14",12,"5-14",13,<20,<15,10.0,"7+","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,1.78339,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,9.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.1666666666666665,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 108 15 6,SN8BFL,urban,108,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.632796,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 108 15 7,SN81FL,urban,108,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,1.78339,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,9.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.1666666666666665,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 108 16 1,SN81FL,urban,108,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.78339,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,9.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",10.0,"7+",1,23,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 108 16 2,SN8BFL,urban,108,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,0.0,108,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","56","30-59",Yes,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 108 16 7,SN81FL,urban,108,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","35","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",27,"20-29","25-39",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.78339,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,9.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 108 17 2,SN81FL,urban,108,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",10,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","59","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.78339,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"0-2.0",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 108 17 2,SN8BFL,urban,108,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"22",More than 5 years,Yes,Yes,No,No,No,No,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"14","5-14",14,"5-14",16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.632796,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",8.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 108 17 12,SN8BFL,urban,108,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"22","20+",15,"15-19",18,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"0","0",yes,1.632796,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",8.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 108 18 2,SN81FL,urban,108,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,108,this urbain,1.0,"1","1",First wife,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","53","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.78339,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",10.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 108 18 8,SN81FL,urban,108,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,3,"3+",7,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",23,"20-29","20-24",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,1.78339,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",10.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"0-2.0",5.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 108 18 8,SN8BFL,urban,108,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.632796,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 108 19 2,SN8BFL,urban,108,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",9,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","65","60+",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",9.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.632796,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.47619047619048,1.0,12.0,"5 and up",8.0,"5 and up",0.8,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,5.25,"0-2.0",4.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 108 19 9,SN81FL,urban,108,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",,Inconsistent or don't know,16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.78339,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 108 19 12,SN81FL,urban,108,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.78339,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 108 19 18,SN8BFL,urban,108,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"2",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"0","0",no,1.632796,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.47619047619048,1.0,12.0,"5 and up",8.0,"5 and up",0.8,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,5.25,"0-2.0",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 108 20 2,SN81FL,urban,108,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",12,"5-14",21,"20-29","20-24",2.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,1.78339,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",9.0,"7+",2,30,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 108 20 3,SN8BFL,urban,108,20,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,108,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",7,"6+","6+",1,"1",1.0,1.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","1-3","53","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,1.632796,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,71.42857142857143,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 108 21 2,SN81FL,urban,108,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,108,this urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,household and domestic,service/domestic,more than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"29",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,1.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.78339,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 108 21 7,SN81FL,urban,108,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,household and domestic,service/domestic,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,yes,no,0.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.78339,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",11.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 108 22 2,SN81FL,urban,108,22,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","42","30-59",No,1.0,yes,no,0.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.78339,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,3.6666666666666665,"0-2.0",17.0,"7+",2,29,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 108 22 12,SN8BFL,urban,108,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,108,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","25",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.632796,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,2.0,yes,Recieved support,100.0,1.0,8.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.75,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 109 2 2,SN8BFL,urban,109,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","56","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"29","20+",29,"20+",33,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.923338,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.25,"0-2.0",16.0,"7+",1,42,wants no more,wants no more,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 109 2 3,SN81FL,urban,109,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,109,this urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.742858,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,6.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",8.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 109 2 7,SN8BFL,urban,109,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.923338,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.25,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 109 2 9,SN81FL,urban,109,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,respondent and husband/partner,respondent and husband/ partner,someone else,"1-3","0","40","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.742858,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,6.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",8.0,"7+",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 109 3 1,SN8BFL,urban,109,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","58","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",3.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 109 3 2,SN81FL,urban,109,3,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","45","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,1.742858,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,11.11111111111111,1.0,4.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,4.5,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 109 4 2,SN8BFL,urban,109,4,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,8,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"26","20+",26,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,11.11111111111111,1.0,7.0,"5 and up",11.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",17.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 109 4 7,SN8BFL,urban,109,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,alone only,8,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"29","20+",29,"20+",31,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.923338,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,11.11111111111111,1.0,7.0,"5 and up",11.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",17.0,"7+",1,37,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 109 4 12,SN8BFL,urban,109,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,8,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","36","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.923338,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,11.11111111111111,1.0,7.0,"5 and up",11.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",17.0,"7+",1,33,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 109 4 15,SN8BFL,urban,109,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,8,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","46","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.923338,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,11.11111111111111,1.0,7.0,"5 and up",11.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",17.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 109 5 2,SN81FL,urban,109,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","56","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 109 5 5,SN8BFL,urban,109,5,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","39","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.923338,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,90.9090909090909,1.0,14.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4444444444444446,"0-2.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 109 5 10,SN8BFL,urban,109,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","43","30-59",Yes,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",26,"20-29","25-39",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,90.9090909090909,1.0,14.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4444444444444446,"0-2.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 109 5 17,SN8BFL,urban,109,5,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",0,"0",<3,1,"1",1.0,0.0,male,"4",Less than 5 years,Yes,No,No,No,No,No,never,never,never,never,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"31","20+",31,"20+",35,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"0","0",no,1.923338,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,90.9090909090909,1.0,14.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.4444444444444446,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 109 6 2,SN81FL,urban,109,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.742858,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,81.81818181818183,1.0,8.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",12.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 109 6 2,SN8BFL,urban,109,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent and husband/partner,respondent alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","54","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,yes,,,pharmacy,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.923338,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,69.23076923076923,1.0,9.0,"5 and up",4.0,"3-4",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.1666666666666665,"0-2.0",16.0,"7+",1,26,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 109 6 12,SN8BFL,urban,109,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","2",<3,"0-4",both want same,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,69.23076923076923,1.0,9.0,"5 and up",4.0,"3-4",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.1666666666666665,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 109 7 7,SN81FL,urban,109,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","58","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,undecided,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,9.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8571428571428572,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 109 7 12,SN81FL,urban,109,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","25",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants fewer,yes,,,other,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,1.742858,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,9.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8571428571428572,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 109 8 2,SN81FL,urban,109,8,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",6,"6+","6+",1,"1",1.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","55","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.6666666666666665,"0-2.0",9.0,"7+",0,35,,,,,yes,1,3,1,5,3,3,3,9,6 + 109 8 2,SN8BFL,urban,109,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","47","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.923338,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",14.0,"7+",1,38,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 109 9 4,SN81FL,urban,109,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,husband/partner alone,respondent alone,other,"0","1-3","46","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,7.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.8333333333333333,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 109 9 8,SN81FL,urban,109,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.742858,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,7.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.8333333333333333,"0-2.0",6.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 109 10 1,SN81FL,urban,109,10,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","59","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 109 11 2,SN81FL,urban,109,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.742858,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,61.53846153846154,1.0,9.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.1666666666666665,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 109 11 5,SN81FL,urban,109,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,other,husband/partner alone,respondent alone,other,"0","1-3","50","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",19,"15-19",20,"20-29","20-24",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.742858,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,61.53846153846154,1.0,9.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.1666666666666665,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 109 11 7,SN8BFL,urban,109,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,5,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",7.0,"5 and up",2.5,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 109 11 10,SN8BFL,urban,109,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,No,No,No,Yes,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","36","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.923338,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,5.0,"5 and up",7.0,"5 and up",2.5,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 109 12 2,SN81FL,urban,109,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","15",under 30,No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,1.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",3.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 109 13 2,SN81FL,urban,109,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","29",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"13","5-14",13,"5-14",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.742858,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,3,2,4,6,1,6,9 + 109 14 3,SN8BFL,urban,109,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,1.0,2.3333333333333335,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 109 15 9,SN81FL,urban,109,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,1.742858,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,13.0,"5 and up",7.0,"5 and up",1.2,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.142857142857143,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 109 15 12,SN81FL,urban,109,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","15",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.742858,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,13.0,"5 and up",7.0,"5 and up",1.2,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.142857142857143,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 109 15 16,SN81FL,urban,109,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,6,"3+",0,"0",<3,1,"1",1.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","15",under 30,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,1.742858,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,13.0,"5 and up",7.0,"5 and up",1.2,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.142857142857143,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 109 15 17,SN81FL,urban,109,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,109,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,husband/partner alone,respondent alone,other,"0","1-3","15",under 30,Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"0","0",no,1.742858,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,13.0,"5 and up",7.0,"5 and up",1.2,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.142857142857143,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 109 16 4,SN81FL,urban,109,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","36","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,7.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4,"0-2.0",7.0,"7+",1,22,unsure timing,"wants, unsure timing",1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 109 16 6,SN8BFL,urban,109,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,95.23809523809523,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",8.0,"7+",2,25,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 109 16 9,SN81FL,urban,109,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","34","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.742858,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,7.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4,"0-2.0",7.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 109 16 11,SN8BFL,urban,109,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","49","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"26","20+",,Inconsistent or don't know,26,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,95.23809523809523,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",8.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 109 17 2,SN81FL,urban,109,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","58","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,5.0,1.0,0.0,0.0,,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"0-2.0",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 109 17 2,SN8BFL,urban,109,17,0.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,3,"3+",10,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,1.923338,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,6.0,"0-2.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 109 18 1,SN81FL,urban,109,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"18","15-19",18,"15-19",23,"20-29","20-24",2.0,"1-3","2+","3+",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",not partnered,no,,,condom not used,1,1,,0.0,not married,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,1,4 + 109 18 8,SN8BFL,urban,109,18,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,109,this urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,0.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,Arabic,"22","20+",20,"20+",20,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",not partnered,no,,,condom not used,0,1,yes,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6,"0-2.0",10.0,"7+",0,,,,,,no,2,2,4,5,6,5,5,1,2 + 109 18 14,SN8BFL,urban,109,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","27",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"2",0.0,0.0,,,,less than once a week,not at all,at least once a week,1.0,"2","1",yes,1.923338,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6,"0-2.0",10.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 109 19 5,SN81FL,urban,109,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","38","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.742858,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.0,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 109 19 13,SN8BFL,urban,109,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,1.923338,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,11.0,"5 and up",9.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.857142857142857,"0-2.0",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 109 20 1,SN8BFL,urban,109,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","0","38","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"13","5-14",13,"5-14",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.923338,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.0,"0-2.0",2.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 109 20 2,SN81FL,urban,109,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,109,this urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.742858,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,7.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6,"0-2.0",9.0,"7+",2,25,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 109 20 4,SN81FL,urban,109,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,1.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.742858,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,7.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6,"0-2.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 109 21 2,SN81FL,urban,109,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,1.742858,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,71.42857142857143,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",6.0,"0-7",,,,,,,,2,2,3,2,4,6,1,6,9 + 109 21 2,SN8BFL,urban,109,21,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.923338,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.75,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 109 22 2,SN81FL,urban,109,22,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,109,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"1-3","1-3","38","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.742858,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",9.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 110 1 2,SN8BFL,urban,110,1,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","63","60+",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",31,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.215199,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 110 2 1,SN81FL,urban,110,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,110,this urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Worked in the past year,0.0,All year,no partner,no partner,not working,not working,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,1.452928,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",3.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,4 + 110 2 4,SN8BFL,urban,110,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,someone else,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","49","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",,Inconsistent or don't know,22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,2.215199,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,62.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 110 4 2,SN8BFL,urban,110,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,alone only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","43","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,1.0,1.0,1.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",31,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,2.215199,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"0-2.0",18.0,"7+",1,38,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 110 5 8,SN81FL,urban,110,5,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,don't know,does not own,does not own,1,"1",8,"6+","6+",0,"0",0.0,0.0,male,"36",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","62","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.452928,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,94.44444444444444,1.0,10.0,"5 and up",8.0,"5 and up",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.25,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 110 5 10,SN81FL,urban,110,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.452928,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,94.44444444444444,1.0,10.0,"5 and up",8.0,"5 and up",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.25,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 110 6 2,SN81FL,urban,110,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,1.452928,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.5,"0-2.0",5.0,"0-7",1,32,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 110 7 3,SN8BFL,urban,110,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,someone else,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,2.215199,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,4.0,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 110 8 2,SN8BFL,urban,110,8,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,about the same,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","60","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",,Inconsistent or don't know,22,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.215199,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,38.46153846153847,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"0-2.0",14.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 110 8 9,SN8BFL,urban,110,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","52","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.215199,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,38.46153846153847,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"0-2.0",14.0,"7+",1,48,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 110 10 1,SN81FL,urban,110,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,1.0,female,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.452928,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",15.0,"7+",0,,never had sex,never had sex,,,yes,2,1,3,4,1,7,7,3,8 + 110 10 2,SN8BFL,urban,110,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",21,"20+",26,"20-29","25-39",5.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.215199,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",12.0,"7+",1,33,wants no more,wants no more,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 110 11 2,SN81FL,urban,110,11,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.452928,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.2,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"0-2.0",6.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 110 11 2,SN8BFL,urban,110,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,110,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"24",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","52","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",26,"20-29","25-39",5.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.215199,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.0,"0-2.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 110 11 8,SN81FL,urban,110,11,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,110,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,more than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","55","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.452928,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.2,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 110 12 4,SN81FL,urban,110,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","49","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.452928,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",8.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 110 14 4,SN81FL,urban,110,14,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"31","20+",31,"20+",31,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,1.452928,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,2.75,"0-2.0",11.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 110 14 10,SN81FL,urban,110,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",27,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.452928,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,2.75,"0-2.0",11.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 110 15 1,SN8BFL,urban,110,15,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,110,this urbain,1.0,"1","3+",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,alone only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.215199,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.1666666666666667,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 110 15 3,SN81FL,urban,110,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,household and domestic,service/domestic,don't know,both alone and jointly,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","44","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"30","20+",30,"20+",33,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,1.452928,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.0,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 110 16 1,SN81FL,urban,110,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","67","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,1.452928,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 110 16 4,SN8BFL,urban,110,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.215199,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 110 18 2,SN81FL,urban,110,18,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",5.0,"4-6","2+","2",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.452928,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.25,"0-2.0",14.0,"7+",1,44,unsure timing,undecided,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 110 18 2,SN8BFL,urban,110,18,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 12 months,,professional/technical/managerial,,less than him,alone only,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","56","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.215199,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,14.285714285714285,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",13.0,"7+",1,36,unsure timing,undecided,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 110 19 2,SN8BFL,urban,110,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,2.215199,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",20.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 110 20 1,SN8BFL,urban,110,20,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,110,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent alone,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","58","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",30,"30+","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.215199,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 110 21 4,SN8BFL,urban,110,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"26","20+",,Inconsistent or don't know,26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,2.215199,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,63.63636363636363,1.0,9.0,"5 and up",2.0,"1-2",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 110 22 2,SN81FL,urban,110,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,110,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",31,"30+","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,1.452928,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",18.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 111 1 2,SN8BFL,urban,111,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",9,"6+","6+",1,"1",1.0,0.0,male,"33",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","59","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",10.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.411119,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8,"0-2.0",11.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 111 1 9,SN81FL,urban,111,1,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.05235,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.47619047619048,1.0,12.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 111 3 3,SN81FL,urban,111,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,111,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.05235,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.57142857142857,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 111 3 8,SN81FL,urban,111,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,2.05235,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.57142857142857,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"0-2.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 111 4 2,SN8BFL,urban,111,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,0.0,,,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,2.411119,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.8,"0-2.0",16.0,"7+",0,38,,,,,no,2,1,3,4,1,7,7,3,8 + 111 4 4,SN81FL,urban,111,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,6,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,2.05235,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,14.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.888888888888889,"0-2.0",12.0,"7+",2,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 111 4 7,SN81FL,urban,111,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.05235,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,14.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.888888888888889,"0-2.0",12.0,"7+",2,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 111 4 20,SN81FL,urban,111,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,111,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,6,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","69","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,2.05235,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,14.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.888888888888889,"0-2.0",12.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 111 6 2,SN81FL,urban,111,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,17,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,2.05235,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",6.0,"0-7",1,31,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 111 6 2,SN8BFL,urban,111,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","60","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.411119,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,42.857142857142854,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4,"0-2.0",18.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 111 7 2,SN8BFL,urban,111,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","53","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,2.411119,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,4.0,"3-4",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.3333333333333335,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 111 7 4,SN81FL,urban,111,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,2.05235,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,7.0,"5 and up",4.0,"3-4",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5714285714285714,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 111 7 9,SN81FL,urban,111,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","32","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,2.05235,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,36.36363636363637,1.0,7.0,"5 and up",4.0,"3-4",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5714285714285714,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 111 8 1,SN8BFL,urban,111,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",Yes,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",14,"5-14",21,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,2.411119,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 111 8 2,SN81FL,urban,111,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,111,this urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","60","60+",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.05235,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,12.5,1.0,6.0,"5 and up",2.0,"1-2",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 111 8 7,SN81FL,urban,111,8,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.05235,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,12.5,1.0,6.0,"5 and up",2.0,"1-2",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"0-2.0",9.0,"7+",1,21,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 111 9 2,SN8BFL,urban,111,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,christian,0.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,2.411119,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",18.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 111 9 4,SN81FL,urban,111,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,2.05235,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.3333333333333335,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 111 11 2,SN8BFL,urban,111,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","51","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"22","20+",22,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.411119,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 111 11 9,SN8BFL,urban,111,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"12","5-14",12,"5-14",14,<20,<15,3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,2.411119,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",9.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 111 11 13,SN8BFL,urban,111,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"17","15-19",17,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.411119,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 111 12 2,SN81FL,urban,111,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","59","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.05235,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",10.0,"7+",1,35,infecund,declared infecund (respondent or partner(s)),1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 111 12 5,SN81FL,urban,111,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,111,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",1,"1-2",<3,1,"1",1.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.05235,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",10.0,"7+",0,,,,,,no,1,1,2,1,2,7,6,3,5 + 111 13 1,SN8BFL,urban,111,13,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,111,this urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,other,respondent alone,"0","4+","57","30-59",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",4.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.411119,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.5,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 111 13 2,SN81FL,urban,111,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","42","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,2.05235,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,6.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"0-2.0",17.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 111 15 2,SN8BFL,urban,111,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,111,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.411119,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"0-2.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 111 16 3,SN81FL,urban,111,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,111,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,jointly only,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,2.05235,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,28.57142857142857,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.1666666666666667,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 111 17 6,SN8BFL,urban,111,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,111,this urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","34","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,2.411119,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,11.11111111111111,1.0,7.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"0-2.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 111 18 2,SN81FL,urban,111,18,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,111,this urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.05235,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.75,"0-2.0",10.0,"7+",2,26,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 111 19 1,SN81FL,urban,111,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","50","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"23","20+",16,"15-19",16,<20,"15-19",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,2.05235,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",1.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 111 21 2,SN81FL,urban,111,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",no,2.05235,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,68.42105263157895,1.0,10.0,"5 and up",9.0,"5 and up",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,18,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,0.6111111111111112,"0-2.0",18.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 111 21 2,SN8BFL,urban,111,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",other/TBA,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,2.411119,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 111 21 7,SN81FL,urban,111,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,2.05235,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,68.42105263157895,1.0,10.0,"5 and up",9.0,"5 and up",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,18,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,0.6111111111111112,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 111 22 1,SN8BFL,urban,111,22,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,111,this urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",32,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,2.411119,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 115 1 1,SN8BFL,urban,115,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,115,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,2,"2 or more",1.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"35","20+",35,"20+",36,"30+","25-39",5.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.738081,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,richest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,4.0,"3-4",1.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 115 3 2,SN8BFL,urban,115,3,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,1,"1",7,"6+","6+",2,"2 or more",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","62","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.738081,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 115 4 4,SN8BFL,urban,115,4,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","25",under 30,No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",13,<20,<15,2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.738081,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4,"0-2.0",0.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 115 5 10,SN8BFL,urban,115,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,6,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.738081,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,13.0,"5 and up",7.0,"5 and up",1.2,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,3.3333333333333335,"0-2.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 115 5 15,SN8BFL,urban,115,5,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,Yes,Yes,Yes,No,No,No,sometimes,never,sometimes,never,sometimes,never,never,never,often,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.738081,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,13.0,"5 and up",7.0,"5 and up",1.2,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,3.3333333333333335,"0-2.0",18.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 115 5 19,SN8BFL,urban,115,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,6,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.738081,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,13.0,"5 and up",7.0,"5 and up",1.2,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,3.3333333333333335,"0-2.0",18.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 115 5 28,SN8BFL,urban,115,5,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,115,louga urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,6,"3+",2,"1-2",<3,1,"1",1.0,1.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"7","5-14",7,"5-14",14,<20,<15,3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.738081,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,13.0,"5 and up",7.0,"5 and up",1.2,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,3.3333333333333335,"0-2.0",18.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 115 6 4,SN8BFL,urban,115,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,115,louga urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.738081,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,5,6,5,5,1,2 + 115 6 7,SN8BFL,urban,115,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","34","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.738081,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",13.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 115 7 2,SN8BFL,urban,115,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,Yes,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.738081,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 115 7 5,SN8BFL,urban,115,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.738081,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 115 10 1,SN8BFL,urban,115,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","37","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.738081,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",0.0,"0-7",1,31,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 115 12 3,SN8BFL,urban,115,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"21","20+",21,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.738081,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",5.0,"0-7",1,39,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 115 13 2,SN8BFL,urban,115,13,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"15",More than 5 years,No,Yes,No,Yes,Yes,Yes,sometimes,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.738081,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",7.0,"5 and up",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 115 14 2,SN8BFL,urban,115,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,2,"2",10,"6+","6+",1,"1",1.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","57","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",11.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.738081,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",6.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",12.0,"7+",1,28,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 115 15 1,SN8BFL,urban,115,15,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,115,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,"12",More than 5 years,Yes,Yes,No,Yes,Yes,No,sometimes,never,never,sometimes,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,respondent and husband/partner,respondent alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","37","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.738081,1.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"0-2.0",16.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 115 16 2,SN8BFL,urban,115,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,115,louga urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","52","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.738081,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,0.0,0.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,1.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"0-2.0",0.0,"0-7",2,34,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 115 17 1,SN8BFL,urban,115,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,115,louga urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",10,"6+","6+",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","60","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",11.0,"7+","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,1,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.738081,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,60.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 115 19 2,SN8BFL,urban,115,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,"9",More than 5 years,Yes,Yes,No,No,No,No,sometimes,sometimes,sometimes,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.738081,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"0-2.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 115 20 1,SN8BFL,urban,115,20,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,alone only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","50","30-59",Yes,0.0,no,no,0.0,,,,,,,christian,0.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"29","20+",,Inconsistent or don't know,29,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.738081,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 115 21 1,SN8BFL,urban,115,21,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,alone only,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","54","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.738081,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,28.57142857142857,1.0,2.0,"2",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 115 22 2,SN8BFL,urban,115,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,115,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.738081,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,20.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",0.0,"0-7",1,28,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 118 1 2,SN81FL,urban,118,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.675794,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",7.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 118 1 6,SN81FL,urban,118,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"16","15-19",16,"15-19",26,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.675794,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",7.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 118 4 6,SN81FL,urban,118,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","36","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.675794,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.5,"0-2.0",5.0,"0-7",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,2,1,2,7,6,3,5 + 118 4 10,SN81FL,urban,118,4,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","0","46","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.6,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.5,"0-2.0",5.0,"0-7",1,30,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 118 5 2,SN81FL,urban,118,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 118 6 2,SN81FL,urban,118,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,7.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6,"0-2.0",10.0,"7+",0,,,,,,no,1,3,2,3,5,2,8,4,10 + 118 6 8,SN81FL,urban,118,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"20","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.675794,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,7.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6,"0-2.0",10.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 118 7 2,SN81FL,urban,118,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,118,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,"29",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,"yes, but not in the last 12 months","yes, but not in the last 12 months","yes, but not in the last 12 months","yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,"yes, but not in the last 12 months",never,No,No,,,No,Yes,Yes,No,No,No,No,No,No,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","64","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.4,"0-2.0",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 118 7 7,SN81FL,urban,118,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,118,louga urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","64","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.4,"0-2.0",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 118 9 1,SN81FL,urban,118,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.675794,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",1.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 118 10 2,SN81FL,urban,118,10,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,5.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,0.675794,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",0.0,"0-7",0,,,,,,no,1,1,2,1,5,7,6,4,5 + 118 10 7,SN81FL,urban,118,10,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.675794,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",0.0,"0-7",0,,,,,,no,1,2,1,5,4,1,6,6,5 + 118 11 5,SN81FL,urban,118,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","29",under 30,No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",,Inconsistent or don't know,17,<20,"15-19",2.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.675794,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"0-2.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 118 12 2,SN81FL,urban,118,12,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,don't know,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",11.0,"7+",2,22,wants no more,wants no more,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 118 13 4,SN81FL,urban,118,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,118,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,no,yes,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.1428571428571428,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 118 13 6,SN81FL,urban,118,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,don't know,don't know,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.675794,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.1428571428571428,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 118 15 5,SN81FL,urban,118,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","35","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.675794,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 118 15 7,SN81FL,urban,118,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,118,louga urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","58","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 118 15 8,SN81FL,urban,118,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,sometimes,never,often,often,often,never,never,never,never,never,never,never,Yes,No,,,No,Yes,Yes,No,No,Yes,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.675794,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 118 18 7,SN81FL,urban,118,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.675794,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",12.0,"7+",2,32,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 118 19 2,SN81FL,urban,118,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","44","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.675794,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,37.5,1.0,5.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",13.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 118 21 6,SN81FL,urban,118,21,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","45","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 118 22 2,SN81FL,urban,118,22,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,118,louga urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,1.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,,"3","3-5","0-4",not partnered,no,,,condom not used,0,1,no,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.675794,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",0,,never had sex,never had sex,,,no,1,2,3,5,4,3,3,1,3 + 118 22 7,SN81FL,urban,118,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,118,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.675794,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 119 1 4,SN8BFL,urban,119,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,119,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.49512,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,25.0,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",16.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 119 2 7,SN8BFL,urban,119,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Arabic,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.49512,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.3333333333333335,"0-2.0",16.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 119 6 2,SN8BFL,urban,119,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",8,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","59","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.49512,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",7.0,"7+",1,37,wants no more,wants no more,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 119 7 3,SN8BFL,urban,119,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","32","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"12","5-14",12,"5-14",14,<20,<15,3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.49512,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,9.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6,"0-2.0",17.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 119 7 7,SN8BFL,urban,119,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.49512,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,9.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6,"0-2.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 119 7 11,SN8BFL,urban,119,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,6,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","53","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",,Inconsistent or don't know,21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.49512,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,9.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6,"0-2.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 119 8 1,SN8BFL,urban,119,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","51","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.49512,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,5.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",5.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 119 8 7,SN8BFL,urban,119,8,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,3,"3+",8,"6+","6+",1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","48","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",9.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.49512,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,5.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",5.0,"0-7",1,30,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,4,5,6,3,3,1,6 + 119 9 6,SN8BFL,urban,119,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.49512,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.21052631578947,1.0,12.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7272727272727273,"0-2.0",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 119 9 8,SN8BFL,urban,119,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,119,louga urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",6,"6+","6+",2,"2 or more",1.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","59","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.49512,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.21052631578947,1.0,12.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7272727272727273,"0-2.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 119 9 15,SN8BFL,urban,119,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.49512,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.21052631578947,1.0,12.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7272727272727273,"0-2.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 119 9 18,SN8BFL,urban,119,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,119,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","62","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.49512,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.21052631578947,1.0,12.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7272727272727273,"0-2.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 119 11 4,SN8BFL,urban,119,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,6,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.49512,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,47.05882352941176,1.0,9.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 119 11 13,SN8BFL,urban,119,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","29",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.49512,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,47.05882352941176,1.0,9.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",15.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 119 12 1,SN8BFL,urban,119,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",1,"1",1.0,0.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","64","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.49512,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 119 15 3,SN8BFL,urban,119,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,119,louga urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"32","20+",15,"15-19",16,<20,"15-19",5.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.49512,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.2,"0-2.0",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 119 16 2,SN8BFL,urban,119,16,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","66","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.49512,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 119 17 12,SN8BFL,urban,119,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"22","20+",22,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.49512,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,9.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 119 18 2,SN8BFL,urban,119,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.49512,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",10.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 119 20 4,SN8BFL,urban,119,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","64","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",,Inconsistent or don't know,25,"20-29","25-39",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.49512,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 119 22 4,SN8BFL,urban,119,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.49512,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,5.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.2,"0-2.0",2.0,"0-7",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 122 3 2,SN81FL,urban,122,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,122,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.802003,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,6.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"0-2.0",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 122 3 4,SN81FL,urban,122,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,122,louga urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Worked in the past year,0.0,All year,no partner,no partner,not working,not working,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,,More than 6,"6+","5+",not partnered,no,,,condom not used,1,1,no,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.802003,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,6.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"0-2.0",7.0,"7+",,,,,,,,1,2,1,5,4,1,2,1,7 + 122 4 2,SN81FL,urban,122,4,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",8,"6+","6+",2,"2 or more",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","1-3","54","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",10.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.802003,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",12.0,"5 and up",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",7.0,"7+",1,33,wants no more,wants no more,1.0,1.0,no,1,1,2,1,5,7,6,4,5 + 122 4 12,SN81FL,urban,122,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.802003,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",12.0,"5 and up",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",7.0,"7+",0,26,,,,,no,1,1,2,1,2,7,6,3,5 + 122 5 9,SN81FL,urban,122,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","49","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,"1","1",yes,0.802003,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 122 7 2,SN81FL,urban,122,7,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"23","20+",23,"20+",27,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.802003,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",8.0,"5 and up",0.8333333333333334,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.375,"0-2.0",9.0,"7+",,,,,,,,1,2,4,5,6,3,3,1,6 + 122 7 12,SN81FL,urban,122,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","26",under 30,No,1.0,yes,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.802003,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",8.0,"5 and up",0.8333333333333334,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.375,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 122 8 2,SN81FL,urban,122,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","68","60+",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.802003,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,16.0,yes,Recieved support,66.66666666666666,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 122 9 2,SN81FL,urban,122,9,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,122,louga urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","44","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.802003,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 122 9 6,SN81FL,urban,122,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,122,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","44","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.802003,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 122 9 15,SN81FL,urban,122,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","26",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,0.0,,,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.802003,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 122 10 2,SN81FL,urban,122,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.802003,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,3.0,"3-4",7.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",9.0,"7+",1,33,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 122 10 5,SN81FL,urban,122,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","47","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.802003,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,3.0,"3-4",7.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 122 11 2,SN81FL,urban,122,11,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","58","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.802003,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 122 14 4,SN81FL,urban,122,14,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.802003,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.94736842105263,1.0,12.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 122 14 13,SN81FL,urban,122,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","20",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"18","15-19",,Inconsistent or don't know,18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.802003,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.94736842105263,1.0,12.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,1,3,3,5,7,8,4,10 + 122 14 16,SN81FL,urban,122,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,2.0,0.0,2.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"30","20+",30,"20+",30,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.802003,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,78.94736842105263,1.0,12.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 122 15 2,SN81FL,urban,122,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","66","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.802003,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 122 17 4,SN81FL,urban,122,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Wolof,"23","20+",23,"20+",23,"20-29","20-24",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.802003,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 122 17 6,SN81FL,urban,122,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.802003,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",14.0,"7+",,,,,,,,1,2,4,5,6,3,3,1,6 + 122 18 6,SN81FL,urban,122,18,0.0,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,122,louga urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,4,"3+",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,someone else,respondent alone,husband/partner alone,"0","1-3","67","60+",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.802003,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",11.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 122 18 12,SN81FL,urban,122,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,,"4","3-5","0-4",not partnered,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.802003,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",11.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,1,7 + 122 20 2,SN81FL,urban,122,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,122,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.802003,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,2.0,"0-2.0",14.0,"7+",1,41,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,2,1,5,6,1,2,5,7 + 123 2 2,SN81FL,urban,123,2,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,123,louga urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","58","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",23,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,richest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",17.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 123 3 2,SN81FL,urban,123,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,religious prohibition,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,richest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 123 5 2,SN81FL,urban,123,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","47","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 123 6 2,SN81FL,urban,123,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",5,"3-5","3-5",3,"2 or more",1.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,8.0,"7+","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.236924,1.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.5,"0-2.0",12.0,"7+",1,29,unsure timing,"wants, unsure timing",1.0,1.0,no,1,1,2,1,5,7,6,4,5 + 123 8 5,SN81FL,urban,123,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,14.285714285714285,1.0,5.0,"5 and up",2.0,"1-2",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 123 9 2,SN81FL,urban,123,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,No,Yes,Yes,No,No,No,No,No,No,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","52","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.236924,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 123 10 4,SN81FL,urban,123,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","46","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"33","20+",33,"20+",34,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.236924,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",10.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 123 10 6,SN81FL,urban,123,10,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,123,louga urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,1.0,0.0,1.0,,0.0,"2",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.236924,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",10.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,1,7 + 123 10 12,SN81FL,urban,123,10,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,123,louga urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,3,"3+",7,"6+","6+",0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",7.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",10.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,1,4 + 123 12 2,SN81FL,urban,123,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,123,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"30","20+",30,"20+",31,"30+","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.236924,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",6.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 123 13 1,SN81FL,urban,123,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,jointly only,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,"14",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","59","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",32,"30+","25-39",2.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 123 14 1,SN81FL,urban,123,14,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 123 16 9,SN81FL,urban,123,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,123,louga urbain,1.0,"1","3+",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,don't know,jointly only,does not own,1,"1",6,"6+","6+",0,"0",0.0,1.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,14.0,"5 and up",3.0,"3-4",0.14285714285714285,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 123 16 15,SN81FL,urban,123,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.236924,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,14.0,"5 and up",3.0,"3-4",0.14285714285714285,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",16.0,"7+",1,9,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 123 16 17,SN81FL,urban,123,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,123,louga urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 12 months,,don't know,other/dk,don't know,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,don't know,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,82.35294117647058,1.0,14.0,"5 and up",3.0,"3-4",0.14285714285714285,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8333333333333335,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 123 17 1,SN81FL,urban,123,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,both alone and jointly,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.236924,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 123 18 2,SN81FL,urban,123,18,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,about the same,alone only,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","51","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"35","20+",35,"20+",38,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.236924,1.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"0-2.0",13.0,"7+",1,31,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 123 19 2,SN81FL,urban,123,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.236924,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 123 20 2,SN81FL,urban,123,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,123,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Wolof,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.236924,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"0-2.0",17.0,"7+",1,32,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 123 21 1,SN81FL,urban,123,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,,,,,1.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,123,louga urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","60","60+",Yes,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",3.0,"1-3","2+","2",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.236924,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,6.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 124 1 2,SN8BFL,urban,124,1,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","49","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"32","20+",32,"20+",43,"30+","40+",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.684762,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 124 1 6,SN81FL,urban,124,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"35","20+",35,"20+",36,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.63608,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 124 1 10,SN8BFL,urban,124,1,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",0,"0",<3,1,"1",1.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","38","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.684762,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 124 2 2,SN8BFL,urban,124,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,124,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.684762,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"0-2.0",5.0,"0-7",2,22,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 124 3 1,SN81FL,urban,124,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,124,louga urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,don't know,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",36,"30+","25-39",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,less than once a week,1.0,"1","1",yes,0.63608,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,3.0,"3-4",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",11.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 124 3 2,SN8BFL,urban,124,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",8,"6+","6+",1,"1",1.0,0.0,male,"28",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","56","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 124 3 8,SN8BFL,urban,124,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,don't know,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",4.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 124 4 3,SN81FL,urban,124,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5555555555555554,"0-2.0",7.0,"7+",1,35,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 124 4 7,SN81FL,urban,124,4,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.63608,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5555555555555554,"0-2.0",7.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,1,3,1,5,3,3,3,2,3 + 124 4 12,SN81FL,urban,124,4,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,0.0,no,no,0.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",1.0,1.0,no,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5555555555555554,"0-2.0",7.0,"7+",1,22,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 124 4 18,SN81FL,urban,124,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",Yes,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",no,0.63608,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,82.6086956521739,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5555555555555554,"0-2.0",7.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 124 5 1,SN81FL,urban,124,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",30,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,undecided,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.63608,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"0-2.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 124 5 2,SN8BFL,urban,124,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.684762,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 124 6 1,SN8BFL,urban,124,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","1-3","43","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"14","5-14",14,"5-14",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,undecided,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 124 6 5,SN8BFL,urban,124,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Wolof,"26","20+",26,"20+",32,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,,"2",<3,"0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.684762,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 124 7 2,SN81FL,urban,124,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,93.33333333333333,1.0,11.0,"5 and up",4.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5555555555555556,"0-2.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 124 7 2,SN8BFL,urban,124,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","51","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.684762,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,92.85714285714286,1.0,7.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8,"0-2.0",11.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 124 7 12,SN81FL,urban,124,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",34,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.63608,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,93.33333333333333,1.0,11.0,"5 and up",4.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5555555555555556,"0-2.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 124 8 2,SN8BFL,urban,124,8,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","49","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"10","5-14",10,"5-14",15,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",12.0,"7+",1,25,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,5,2,8,4,10 + 124 9 1,SN8BFL,urban,124,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,124,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"29",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","55","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.684762,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",6.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 124 9 3,SN81FL,urban,124,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,11.11111111111111,1.0,5.0,"5 and up",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 124 9 4,SN8BFL,urban,124,9,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",6.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 124 9 6,SN81FL,urban,124,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,11.11111111111111,1.0,5.0,"5 and up",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 124 9 8,SN8BFL,urban,124,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,124,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.684762,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",6.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"0-2.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 124 10 2,SN81FL,urban,124,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,more than him,alone only,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.63608,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,9.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.8571428571428572,"0-2.0",12.0,"7+",1,28,wants no more,wants no more,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 124 10 2,SN8BFL,urban,124,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.684762,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 124 11 3,SN81FL,urban,124,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,"22",More than 5 years,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","52","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.63608,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 124 11 4,SN8BFL,urban,124,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,85.71428571428571,1.0,6.0,"5 and up",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",9.0,"7+",,,,,,,,1,2,3,5,4,3,3,1,3 + 124 11 6,SN81FL,urban,124,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","37","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.63608,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",15.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 124 12 4,SN8BFL,urban,124,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","36","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",24,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.4545454545454546,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 124 12 7,SN8BFL,urban,124,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"1","2",Second or more wife,1.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","84","60+",No,0.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",27,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.4545454545454546,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,6 + 124 13 3,SN8BFL,urban,124,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","47","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,yes,,,pharmacy,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.684762,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 124 13 9,SN8BFL,urban,124,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","32","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"32","20+",32,"20+",33,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.684762,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 124 13 11,SN8BFL,urban,124,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,both alone and jointly,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","47","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.684762,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 124 15 1,SN8BFL,urban,124,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","1-3","65","60+",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.684762,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",6.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 124 15 2,SN81FL,urban,124,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","51","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.63608,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"0-2.0",18.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 124 16 1,SN81FL,urban,124,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","43","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 124 16 1,SN8BFL,urban,124,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,other,husband/partner alone,"0","1-3","53","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 124 16 5,SN81FL,urban,124,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 124 17 1,SN81FL,urban,124,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,female,"16",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",3.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 124 18 7,SN81FL,urban,124,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"28","20+",28,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.63608,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,22.22222222222222,1.0,3.0,"3-4",6.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",5.0,"0-7",2,29,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 124 18 7,SN8BFL,urban,124,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,124,louga urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,other,other,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,more than him,does not own,does not own,3,"3+",7,"6+","6+",2,"2 or more",1.0,1.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",10.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"1","1",yes,0.684762,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,94.73684210526315,1.0,8.0,"5 and up",11.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.7142857142857144,"0-2.0",11.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 124 18 8,SN8BFL,urban,124,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",19,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.684762,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,94.73684210526315,1.0,8.0,"5 and up",11.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.7142857142857144,"0-2.0",11.0,"7+",0,,,,,,no,1,1,2,1,2,7,6,3,5 + 124 18 16,SN8BFL,urban,124,18,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","60","60+",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",34,"30+","25-39",1.0,"1-3","1","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,94.73684210526315,1.0,8.0,"5 and up",11.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.7142857142857144,"0-2.0",11.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,6 + 124 19 3,SN8BFL,urban,124,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","51","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.684762,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"0-2.0",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 124 19 6,SN8BFL,urban,124,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","53","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"0-2.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 124 20 2,SN8BFL,urban,124,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","50","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.684762,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,46.666666666666664,1.0,10.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",12.0,"7+",1,28,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 124 20 9,SN8BFL,urban,124,20,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.684762,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,46.666666666666664,1.0,10.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",12.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 124 22 2,SN81FL,urban,124,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",16.0,"7+",0,32,,,,,no,2,2,4,2,6,5,5,7,2 + 124 22 9,SN81FL,urban,124,22,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","54","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"32","20+",32,"20+",35,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.63608,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",16.0,"7+",1,,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 124 22 14,SN81FL,urban,124,22,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,124,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","45","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"30","20+",,Inconsistent or don't know,31,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.63608,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,57.14285714285714,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",16.0,"7+",0,32,,,,,no,2,2,4,2,6,5,5,7,2 + 125 2 4,SN8BFL,urban,125,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,125,louga urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,both alone and jointly,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","60","60+",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",5.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.774985,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.4,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 125 2 7,SN8BFL,urban,125,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.774985,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.4,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 125 3 2,SN8BFL,urban,125,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.774985,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,45.45454545454545,1.0,6.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 125 4 1,SN8BFL,urban,125,4,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,125,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","45","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.774985,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.25,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 125 5 8,SN8BFL,urban,125,5,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,125,louga urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,Occassional,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,someone else,other,husband/partner alone,"0","1-3","61","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"27","20+",27,"20+",28,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.774985,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7777777777777777,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 125 6 7,SN8BFL,urban,125,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","60","60+",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.774985,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.1666666666666667,"0-2.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 125 9 3,SN8BFL,urban,125,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,125,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.774985,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",5.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 125 9 8,SN8BFL,urban,125,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,125,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"32","20+",32,"20+",33,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.774985,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 125 10 4,SN8BFL,urban,125,10,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","48","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.774985,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",3.0,"0-7",1,39,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 125 11 2,SN8BFL,urban,125,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","49","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"30","20+",30,"20+",31,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.774985,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 125 12 4,SN8BFL,urban,125,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","26",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,less than once a week,1.0,"1","1",yes,0.774985,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,16.0,"5 and up",3.0,"3-4",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.1666666666666665,"0-2.0",16.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,2,1,2,7,6,3,5 + 125 12 8,SN8BFL,urban,125,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,125,louga urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,3,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"34",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,husband/ partner alone,husband/partner alone,"0","0","69","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,undecided,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.774985,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,16.0,"5 and up",3.0,"3-4",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.1666666666666665,"0-2.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 125 12 10,SN8BFL,urban,125,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,"2","1",yes,0.774985,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,16.0,"5 and up",3.0,"3-4",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.1666666666666665,"0-2.0",16.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 125 13 4,SN8BFL,urban,125,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.774985,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,8.0,"5 and up",1.0,"1-2",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"0-2.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 125 15 1,SN8BFL,urban,125,15,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,125,louga urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,female,"31",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.774985,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"0-2.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 125 15 6,SN8BFL,urban,125,15,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"23","20+",23,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.774985,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"0-2.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 125 16 2,SN8BFL,urban,125,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,125,louga urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,9,"3+",10,"6+","6+",1,"1",1.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"16","15-19",16,"15-19",19,<20,"15-19",12.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.774985,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5555555555555554,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 125 16 9,SN8BFL,urban,125,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,125,louga urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,9,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.774985,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5555555555555554,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 125 16 12,SN8BFL,urban,125,16,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,125,louga urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,9,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","51","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",26,"20-29","25-39",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.774985,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5555555555555554,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 125 16 18,SN8BFL,urban,125,16,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,9,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"28","20+",28,"20+",29,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.774985,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5555555555555554,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 125 16 25,SN8BFL,urban,125,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Arabic,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.774985,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5555555555555554,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 125 17 4,SN8BFL,urban,125,17,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","49","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",20,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.774985,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 125 18 2,SN8BFL,urban,125,18,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,125,louga urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.774985,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"0-2.0",12.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 125 19 2,SN8BFL,urban,125,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,125,louga urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"12",More than 5 years,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","47","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.774985,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,15.0,yes,Recieved support,100.0,1.0,11.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 125 20 2,SN8BFL,urban,125,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,125,louga urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","53","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.774985,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 129 2 1,SN81FL,urban,129,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","4+","37","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,christian,0.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",21,"20+",32,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.490427,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,20.0,1.0,2.0,"2",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"2.1-6.0",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 2 1,SN8BFL,urban,129,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","56","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.943001,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,40.0,1.0,2.0,"2",3.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.6666666666666667,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 3 5,SN81FL,urban,129,3,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.490427,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,10.0,1.0,6.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 129 3 8,SN81FL,urban,129,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.490427,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,10.0,1.0,6.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6666666666666667,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 4 2,SN8BFL,urban,129,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,someone else,respondent alone,respondent and husband/partner,"1-3","1-3","52","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.943001,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 129 4 3,SN81FL,urban,129,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.490427,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,42.857142857142854,1.0,9.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"2.1-6.0",13.0,"7+",1,39,wants within 2 years,wants within 2 years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 129 4 7,SN81FL,urban,129,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.490427,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,42.857142857142854,1.0,9.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"2.1-6.0",13.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 129 5 2,SN8BFL,urban,129,5,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,Seasonal,Worked last 12 months,,skilled manual,manual,more than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","4+","60","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.943001,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,5.0,"5 and up",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"2.1-6.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 129 5 3,SN81FL,urban,129,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","33","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.490427,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"2.1-6.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 6 1,SN8BFL,urban,129,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.943001,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 129 6 2,SN81FL,urban,129,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,other,husband/partner alone,"1-3","1-3","52","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",28,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.490427,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,2.25,"2.1-6.0",11.0,"7+",0,19,,,,,no,1,3,1,5,3,3,3,9,1 + 129 8 6,SN8BFL,urban,129,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","28",under 30,No,1.0,no,no,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.943001,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,94.73684210526315,1.0,12.0,"5 and up",7.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8,"2.1-6.0",12.0,"7+",1,26,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 129 8 9,SN8BFL,urban,129,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,other,respondent alone,respondent and husband/ partner,other,"0","1-3","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.943001,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,94.73684210526315,1.0,12.0,"5 and up",7.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8,"2.1-6.0",12.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 129 8 10,SN8BFL,urban,129,8,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","61","60+",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.943001,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,94.73684210526315,1.0,12.0,"5 and up",7.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8,"2.1-6.0",12.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,6 + 129 9 2,SN8BFL,urban,129,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","48","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.943001,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 129 9 3,SN81FL,urban,129,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.490427,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,4.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.2,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 10 4,SN81FL,urban,129,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,both alone and jointly,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","64","60+",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.490427,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.92307692307693,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8571428571428572,"2.1-6.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 129 10 7,SN81FL,urban,129,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,both alone and jointly,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","60","60+",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.490427,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.92307692307693,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8571428571428572,"2.1-6.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,6 + 129 10 10,SN81FL,urban,129,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,yes,no,1.0,"yes, child was treated",1.0,0.0,1.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.490427,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.92307692307693,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8571428571428572,"2.1-6.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 129 12 2,SN81FL,urban,129,12,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,yes,no,0.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.490427,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",5.0,"5 and up",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",13.0,"7+",1,31,unsure timing,undecided,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 129 13 2,SN8BFL,urban,129,13,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,Yes,No,No,No,never,never,never,never,never,never,never,never,"yes, but not in the last 12 months",never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","51","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.943001,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 129 14 2,SN8BFL,urban,129,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,1,"1",1.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.943001,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 14 3,SN81FL,urban,129,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,about the same,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","53","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.490427,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,87.5,1.0,3.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",8.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 129 15 1,SN8BFL,urban,129,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"35","20+",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.943001,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 15 4,SN81FL,urban,129,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,129,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.490427,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.19047619047619,1.0,11.0,"5 and up",9.0,"5 and up",1.25,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 129 15 7,SN81FL,urban,129,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.490427,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.19047619047619,1.0,11.0,"5 and up",9.0,"5 and up",1.25,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 15 16,SN81FL,urban,129,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,1.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.490427,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.19047619047619,1.0,11.0,"5 and up",9.0,"5 and up",1.25,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,3.0,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 129 16 1,SN81FL,urban,129,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","53","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"22","20+",19,"15-19",19,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.490427,0.0,,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"2.1-6.0",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 129 16 1,SN8BFL,urban,129,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","46","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.943001,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",12.0,"7+",1,33,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 129 17 1,SN81FL,urban,129,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.490427,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,11.0,"5 and up",9.0,"5 and up",0.5555555555555556,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3636363636363638,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 129 17 5,SN81FL,urban,129,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","54","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.490427,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,11.0,"5 and up",9.0,"5 and up",0.5555555555555556,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3636363636363638,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 129 17 12,SN81FL,urban,129,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,other,other/dk,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","52","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",1.0,0.0,1.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.490427,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,11.0,"5 and up",9.0,"5 and up",0.5555555555555556,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3636363636363638,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 129 17 19,SN81FL,urban,129,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.490427,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,11.0,"5 and up",9.0,"5 and up",0.5555555555555556,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3636363636363638,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 17 23,SN81FL,urban,129,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.490427,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,78.57142857142857,1.0,11.0,"5 and up",9.0,"5 and up",0.5555555555555556,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3636363636363638,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 129 18 1,SN81FL,urban,129,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,0.490427,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"2.1-6.0",3.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 129 18 2,SN8BFL,urban,129,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","46","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,less than once a week,not at all,less than once a week,1.0,"1","1",yes,0.943001,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"2.1-6.0",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 129 20 10,SN81FL,urban,129,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.490427,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,8.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5714285714285714,"2.1-6.0",14.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 129 21 1,SN8BFL,urban,129,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,129,fatick urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,services,service/domestic,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,alone only,alone only,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,Arabic,"38","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",not partnered,yes,,,pharmacy,1,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.943001,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"2.1-6.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 129 21 2,SN81FL,urban,129,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.490427,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,6.0,"5 and up",4.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.5,"2.1-6.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 129 22 1,SN81FL,urban,129,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,other,0.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.490427,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,1.0,"0-1",2.0,"1-2",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 129 22 2,SN8BFL,urban,129,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.943001,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,6.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"2.1-6.0",15.0,"7+",1,35,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 130 1 1,SN81FL,urban,130,1,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,130,fatick urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,alone only,0,"0",7,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent and husband/partner,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"1-3","4+","59","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Serer,"19","15-19",17,"15-19",17,<20,"15-19",9.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.51001,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,83.33333333333334,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,1.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.5,"2.1-6.0",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 130 1 7,SN8BFL,urban,130,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,1.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","40","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.4623,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,7.6923076923076925,1.0,8.0,"5 and up",5.0,"5 and up",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"2.1-6.0",16.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 130 1 12,SN8BFL,urban,130,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,130,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,1,"1",1,"1-2",<3,1,"1",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,someone else,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.4623,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,7.6923076923076925,1.0,8.0,"5 and up",5.0,"5 and up",0.2,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"2.1-6.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 130 3 2,SN81FL,urban,130,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","41","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",15,"15-19",16,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.51001,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",6.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 130 4 2,SN81FL,urban,130,4,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",7,"6+","6+",1,"1",1.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"1-3","0","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,0.0,,,,not at all,less than once a week,not at all,1.0,"1","1",yes,0.51001,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,3.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,1.0,urban slum,1.0,Washing place not observed,No washing station or place observed,0.0,4.0,"2.1-6.0",7.0,"7+",1,27,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 130 4 14,SN8BFL,urban,130,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,130,fatick urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",8.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.4623,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,38.095238095238095,1.0,11.0,"5 and up",9.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"2.1-6.0",8.0,"7+",2,27,wants no more,wants no more,1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 130 6 5,SN81FL,urban,130,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.51001,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,30.0,1.0,7.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,7,"6+",0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,1.4285714285714286,"2.1-6.0",16.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 130 7 1,SN8BFL,urban,130,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,130,fatick urbain,0.0,not partnered,not currently married,not partnered,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,Arabic,"29","20+",29,"20+",29,"20-29","25-39",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",not partnered,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.4623,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,1.0,"0-1",4.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,1.0,5.0,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,1,4 + 130 7 7,SN81FL,urban,130,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"28","20+",28,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.51001,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,8.0,"5 and up",3.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.2,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 130 9 2,SN81FL,urban,130,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Serer,"19","15-19",19,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.51001,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,22.22222222222222,1.0,6.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 130 9 10,SN8BFL,urban,130,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",1,"1",1.0,1.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.4623,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,96.29629629629629,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 130 9 16,SN8BFL,urban,130,9,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.4623,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,96.29629629629629,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 130 9 22,SN8BFL,urban,130,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.4623,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,96.29629629629629,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",16.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 130 9 27,SN8BFL,urban,130,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,130,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",1,"1",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"25","20+",25,"20+",25,"20-29","25-39",6.0,"4-6","2+","3+",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.4623,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,96.29629629629629,1.0,10.0,"5 and up",10.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 130 11 10,SN8BFL,urban,130,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","43","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,yes,,,private hospital/clinic/doctor's office,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.4623,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,46.666666666666664,1.0,7.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.142857142857143,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 130 12 2,SN81FL,urban,130,12,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","36","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",24,"20+",25,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.51001,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,5.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,1.8333333333333333,"2.1-6.0",12.0,"7+",1,29,wants within 2 years,wants within 2 years,0.0,0.0,yes,1,3,1,5,3,3,3,9,1 + 130 12 2,SN8BFL,urban,130,12,,,,,1.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,130,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","60","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"31","20+",14,"5-14",20,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.4623,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,64.70588235294117,1.0,9.0,"5 and up",8.0,"5 and up",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.4285714285714284,"2.1-6.0",14.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,6 + 130 12 10,SN81FL,urban,130,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","30","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.51001,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,5.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,1.8333333333333333,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 130 12 10,SN8BFL,urban,130,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,,,,,0.0,1.0,1.0,1.0,0.0,,,,,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,1.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,respondent and husband/ partner,respondent alone,"0","1-3","45","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",13,"5-14",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.4623,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,64.70588235294117,1.0,9.0,"5 and up",8.0,"5 and up",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.4285714285714284,"2.1-6.0",14.0,"7+",0,,,,,,no,2,1,3,1,1,7,4,8,8 + 130 13 1,SN81FL,urban,130,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,130,fatick urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,1.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","53","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.51001,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,12.5,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.1666666666666667,"2.1-6.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 130 13 2,SN8BFL,urban,130,13,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"13","5-14",13,"5-14",15,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.4623,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,55.55555555555556,1.0,3.0,"3-4",6.0,"5 and up",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.25,"2.1-6.0",6.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 130 14 1,SN81FL,urban,130,14,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,130,fatick urbain,1.0,"1","2",Second or more wife,1.0,Partner opposes,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,jointly only,does not own,1,"1",7,"6+","6+",1,"1",1.0,1.0,female,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent and husband/partner,someone else,respondent alone,respondent and husband/partner,"1-3","1-3","66","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",21,"20-29","20-24",9.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,0.0,,,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.51001,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",14.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 130 14 2,SN8BFL,urban,130,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.4623,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,18.0,yes,Recieved support,71.42857142857143,1.0,5.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.75,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 130 14 6,SN81FL,urban,130,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,jointly only,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,husband/partner alone,respondent and husband/ partner,other,"0","0","20",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,yes,,,pharmacy,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.51001,1.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",14.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 130 15 4,SN8BFL,urban,130,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","0","28",under 30,No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.4623,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,90.0,1.0,7.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.5,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 130 16 1,SN81FL,urban,130,16,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,On leave/absent,0.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.51001,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,37.5,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.2,"2.1-6.0",21.0,"7+",1,35,wants no more,wants no more,1.0,0.0,yes,1,3,1,5,3,3,3,2,3 + 130 17 2,SN81FL,urban,130,17,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,sterilized/infecund,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.51001,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 130 17 6,SN8BFL,urban,130,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",13,"5-14",15,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.4623,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,33.33333333333333,1.0,8.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.333333333333333,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,1,1,7,4,8,8 + 130 17 14,SN8BFL,urban,130,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",20,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.4623,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,33.33333333333333,1.0,8.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.333333333333333,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 130 18 4,SN8BFL,urban,130,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 12 months,,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",18,"15-19",20,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.4623,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,16.0,yes,Recieved support,42.857142857142854,1.0,8.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",1,38,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,4,4,1,6,9 + 130 18 9,SN8BFL,urban,130,18,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",1,"1",1.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,respondent alone,currently pregnant,someone else,"0","1-3","43","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"32","20+",15,"15-19",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.4623,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,16.0,yes,Recieved support,42.857142857142854,1.0,8.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 130 19 1,SN81FL,urban,130,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.51001,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 130 20 2,SN81FL,urban,130,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","44","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.51001,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,3.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"2.1-6.0",14.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 130 21 1,SN81FL,urban,130,21,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.51001,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,1.0,"0-1",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 130 21 2,SN8BFL,urban,130,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,2.0,0.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,agricultural - self employed,agricultural,Family,Worked in the past year,0.0,Seasonal,Worked last 12 months,,agricultural - self employed,agricultural,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.4623,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,0.0,0.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 130 21 6,SN8BFL,urban,130,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,1.0,,1.0,"3+",0.0,No HW visit,household and domestic,service/domestic,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent alone,husband/partner alone,currently pregnant,respondent alone,"0","1-3","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.4623,1.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,0.0,0.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 130 22 2,SN81FL,urban,130,22,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,130,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","48","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.51001,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",16.0,"7+",1,30,unsure timing,undecided,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 130 22 2,SN8BFL,urban,130,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","42","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,sterilized/infecund,does not want more kids,"5","3-5","5+",,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.4623,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.8,"2.1-6.0",12.0,"7+",1,,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 136 2 2,SN8BFL,urban,136,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.467769,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,25.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",0.0,"0-7",1,33,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 136 2 9,SN81FL,urban,136,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.451728,1.0,,,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"2.1-6.0",15.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 136 3 2,SN8BFL,urban,136,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","38","30-59",Yes,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.467769,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 136 3 5,SN81FL,urban,136,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","26",under 30,No,1.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.451728,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 136 4 1,SN81FL,urban,136,4,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"34","20+",19,"15-19",21,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.451728,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 136 4 2,SN8BFL,urban,136,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","51","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.467769,0.0,,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",6.0,"0-7",1,30,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 136 5 1,SN81FL,urban,136,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,about the same,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"19","15-19",19,"15-19",21,"20-29","20-24",7.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.451728,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,39.130434782608695,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5555555555555554,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 136 5 1,SN8BFL,urban,136,5,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,No,Yes,Yes,No,No,No,never,never,sometimes,never,never,never,never,never,never,often,never,sometimes,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Wolof,"23","20+",23,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.467769,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"2.1-6.0",0.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 136 5 8,SN81FL,urban,136,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","44","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"23","20+",23,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.451728,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,39.130434782608695,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5555555555555554,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 136 5 20,SN81FL,urban,136,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.451728,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,39.130434782608695,1.0,10.0,"5 and up",10.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5555555555555554,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 136 6 2,SN8BFL,urban,136,6,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,does not own,alone only,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","70","60+",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"29","20+",29,"20+",33,"30+","25-39",1.0,"1-3","1","2",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.467769,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,62.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.25,"2.1-6.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 136 7 1,SN81FL,urban,136,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,1.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","49","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"14","5-14",14,"5-14",27,"20-29","25-39",6.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.451728,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 136 7 1,SN8BFL,urban,136,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,136,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",6,"6+","6+",1,"1",1.0,1.0,female,"31",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","56","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"16","15-19",16,"15-19",18,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.467769,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.0,"2.1-6.0",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 136 7 4,SN81FL,urban,136,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,1.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",,Inconsistent or don't know,14,<20,<15,1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.451728,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,1,1,7,7,8,8 + 136 8 1,SN81FL,urban,136,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.451728,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,1.0,"0-1",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 136 8 2,SN8BFL,urban,136,8,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.467769,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,54.54545454545454,1.0,4.0,"3-4",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"2.1-6.0",9.0,"7+",2,30,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 136 8 7,SN8BFL,urban,136,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",Yes,1.0,no,no,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",23,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.467769,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,54.54545454545454,1.0,4.0,"3-4",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"2.1-6.0",9.0,"7+",2,30,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 136 9 2,SN81FL,urban,136,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","63","60+",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"25","20+",18,"15-19",29,"20-29","25-39",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.451728,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,12.0,yes,Recieved support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.5,"2.1-6.0",3.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 136 10 2,SN8BFL,urban,136,10,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","61","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.467769,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 136 11 7,SN81FL,urban,136,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"35","20+",35,"20+",37,"30+","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.451728,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,38.46153846153847,1.0,8.0,"5 and up",5.0,"5 and up",4.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.6,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 136 12 1,SN8BFL,urban,136,12,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.467769,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.3333333333333333,"2.1-6.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 136 12 2,SN81FL,urban,136,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.451728,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,20.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.5,"2.1-6.0",17.0,"7+",1,37,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,1,5,3,3,3,9,1 + 136 13 4,SN8BFL,urban,136,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,Yes,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","31","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.467769,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,60.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",2.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 136 13 9,SN81FL,urban,136,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","24",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,other,"15","15-19",16,"15-19",16,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.451728,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,80.0,1.0,8.0,"5 and up",2.0,"1-2",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"2.1-6.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 136 14 2,SN81FL,urban,136,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.451728,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,46.666666666666664,1.0,9.0,"5 and up",6.0,"5 and up",0.4,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",8.0,"7+",1,29,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 136 14 2,SN8BFL,urban,136,14,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,0.0,,,,not at all,not at all,not at all,0.0,"1","1",yes,0.467769,1.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",8.0,"5 and up",2.0,3.0,No food cooked in house,Other,,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",7.0,"7+",2,30,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 136 14 8,SN8BFL,urban,136,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"1",0.0,0.0,,,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.467769,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",8.0,"5 and up",2.0,3.0,No food cooked in house,Other,,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",7.0,"7+",2,30,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 136 15 1,SN81FL,urban,136,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,1,"1",6,"6+","6+",0,"0",0.0,1.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","51","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",16,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.451728,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,12.5,1.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"2.1-6.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 136 15 6,SN8BFL,urban,136,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",,Inconsistent or don't know,19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.467769,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2,"2.1-6.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 136 15 10,SN8BFL,urban,136,15,,,,,0.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,Yes,Yes,No,Yes,Yes,No,often,never,often,sometimes,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.467769,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2,"2.1-6.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 136 16 2,SN81FL,urban,136,16,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","45","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.451728,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,14.0,yes,Recieved support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"2.1-6.0",0.0,"0-7",1,31,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,2,3,2,2,8,4,10 + 136 16 10,SN8BFL,urban,136,16,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"14","5-14",14,"5-14",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.467769,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,58.620689655172406,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",16.0,"7+",1,34,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,1,3,1,5,6,4,8,8 + 136 16 15,SN8BFL,urban,136,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.467769,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,58.620689655172406,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",16.0,"7+",0,,,,,,no,2,2,3,2,4,6,1,6,9 + 136 16 18,SN8BFL,urban,136,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,Arabic,"22","20+",22,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.467769,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,58.620689655172406,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",16.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 136 17 2,SN81FL,urban,136,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.451728,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 136 17 3,SN8BFL,urban,136,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","52","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",17,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.467769,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,8.0,"5 and up",12.0,"5 and up",0.8,1.0,Food cooked inside,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.3333333333333335,"2.1-6.0",9.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 136 17 8,SN8BFL,urban,136,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.467769,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,8.0,"5 and up",12.0,"5 and up",0.8,1.0,Food cooked inside,Food cooked inside,1.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.3333333333333335,"2.1-6.0",9.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 136 18 1,SN81FL,urban,136,18,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",7,"6+","6+",1,"1",1.0,1.0,female,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","58","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.451728,1.0,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,55.55555555555556,1.0,8.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 136 19 5,SN8BFL,urban,136,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.467769,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,12.5,1.0,4.0,"3-4",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 136 19 7,SN8BFL,urban,136,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,136,fatick urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.467769,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,12.5,1.0,4.0,"3-4",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 136 20 2,SN81FL,urban,136,20,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","42","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.451728,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.5,"2.1-6.0",6.0,"0-7",1,30,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 136 20 4,SN8BFL,urban,136,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,136,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","50","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.467769,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,62.5,1.0,6.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,1.0,1.6,"2.1-6.0",7.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 136 21 2,SN81FL,urban,136,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.451728,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.2,"2.1-6.0",7.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 136 21 2,SN8BFL,urban,136,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","42","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.467769,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,10.0,1.0,5.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 136 21 3,SN81FL,urban,136,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","20",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.451728,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.2,"2.1-6.0",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 136 21 4,SN81FL,urban,136,21,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"22","20+",22,"20+",23,"20-29","20-24",7.0,"7+","2+","3+",no one,TBA / no one,have another,"1-2 years","1",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.451728,1.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.2,"2.1-6.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 136 21 7,SN8BFL,urban,136,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 12 months,,professional/technical/managerial,,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.467769,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,10.0,1.0,5.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 136 22 10,SN81FL,urban,136,22,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,136,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,1.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Wolof,"16","15-19",16,"15-19",17,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.451728,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,9.0,"5 and up",9.0,"5 and up",0.2,1.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.8888888888888888,"2.1-6.0",12.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 137 1 1,SN8BFL,urban,137,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"6",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","42","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.574801,1.0,0.0,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 137 2 2,SN8BFL,urban,137,2,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",30,"30+","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.574801,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",5.0,"0-7",2,30,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,4,5,6,3,3,1,6 + 137 4 2,SN8BFL,urban,137,4,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",7,"6+","6+",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","34","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,8.0,"7+","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.574801,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",6.0,"0-7",1,34,unsure timing,"wants, unsure timing",1.0,1.0,no,1,1,2,1,5,7,6,4,5 + 137 5 2,SN8BFL,urban,137,5,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,137,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","55","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.574801,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 137 5 7,SN8BFL,urban,137,5,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,137,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","55","30-59",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.574801,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"2.1-6.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 137 6 4,SN8BFL,urban,137,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,7,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","48","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.574801,1.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",11.0,"5 and up",1.75,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"2.1-6.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 137 6 9,SN8BFL,urban,137,6,0.0,0.0,0.0,1.0,0.0,0.0,1.0,,,,0.0,1.0,1.0,1.0,1.0,3.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,7,"3+",6,"6+","6+",1,"1",1.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"3","1",yes,0.574801,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",11.0,"5 and up",1.75,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"2.1-6.0",16.0,"7+",0,,never had sex,never had sex,,,no,1,1,2,1,2,7,6,3,5 + 137 6 17,SN8BFL,urban,137,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,7,"3+",1,"1-2",<3,1,"1",1.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.574801,0.0,0.0,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",11.0,"5 and up",1.75,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.625,"2.1-6.0",16.0,"7+",1,35,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 137 8 2,SN8BFL,urban,137,8,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.574801,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",1.0,"0-7",1,23,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 137 9 7,SN8BFL,urban,137,9,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,Yes,No,No,No,No,No,never,never,never,never,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.574801,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.94736842105263,1.0,11.0,"5 and up",8.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.9,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 137 9 10,SN8BFL,urban,137,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"6","5-14",6,"5-14",18,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"5","3-5","5+",not partnered,no,,,condom not used,0,1,no,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.574801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.94736842105263,1.0,11.0,"5 and up",8.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.9,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,1,5,7,4,8,8 + 137 10 2,SN8BFL,urban,137,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,unskilled manual,manual,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"23","20+",23,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.574801,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,53.84615384615385,1.0,5.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.1666666666666665,"2.1-6.0",0.0,"0-7",1,31,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 137 10 7,SN8BFL,urban,137,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","43","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.574801,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,53.84615384615385,1.0,5.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.1666666666666665,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 137 12 2,SN8BFL,urban,137,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,137,fatick urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,unskilled manual,manual,Family,On leave/absent,0.0,All year,no partner,no partner,not working,not working,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.574801,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.4,"2.1-6.0",0.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,1,4 + 137 12 6,SN8BFL,urban,137,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.574801,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,5.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.4,"2.1-6.0",0.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 137 13 1,SN8BFL,urban,137,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,female,"15",More than 5 years,No,Yes,No,Yes,No,No,sometimes,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","49","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.574801,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.81818181818183,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.5,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 137 14 3,SN8BFL,urban,137,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,,not at all,not at all,not at all,0.0,"2","1",yes,0.574801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,4.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,1.0,0.0,,,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,1.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"2.1-6.0",6.0,"0-7",1,28,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 137 16 4,SN8BFL,urban,137,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,less than once a week,1.0,"1","1",yes,0.574801,1.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,7.0,"5 and up",13.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.857142857142857,"2.1-6.0",10.0,"7+",2,25,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 137 16 11,SN8BFL,urban,137,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.574801,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,7.0,"5 and up",13.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.857142857142857,"2.1-6.0",10.0,"7+",1,28,unsure timing,"wants, unsure timing",1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 137 16 20,SN8BFL,urban,137,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,137,fatick urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Worked in the past year,0.0,All year,no partner,no partner,not working,not working,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"19","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","3+",no one,TBA / no one,have another,,"4","3-5","0-4",not partnered,yes,,,private hospital/clinic/doctor's office,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.574801,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,7.0,"5 and up",13.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.857142857142857,"2.1-6.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 137 17 3,SN8BFL,urban,137,17,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"26","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,don't know,don't know,don't know,not at all,not at all,less than once a week,1.0,"2","1",yes,0.574801,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,77.77777777777779,1.0,5.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 137 18 2,SN8BFL,urban,137,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,agricultural - employee,agricultural,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.574801,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",0.0,"0-7",1,29,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 137 19 15,SN8BFL,urban,137,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.574801,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,10.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.8,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 137 20 2,SN8BFL,urban,137,20,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.574801,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"2.1-6.0",0.0,"0-7",1,28,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 137 20 6,SN8BFL,urban,137,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.574801,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"2.1-6.0",0.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 137 21 2,SN8BFL,urban,137,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,137,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,often,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","53","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.574801,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.5,"2.1-6.0",3.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 140 1 2,SN81FL,urban,140,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.449348,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,37.5,1.0,4.0,"3-4",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.6666666666666665,"2.1-6.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 140 2 2,SN81FL,urban,140,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.449348,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,45.45454545454545,1.0,5.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.6666666666666665,"2.1-6.0",8.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 140 3 10,SN81FL,urban,140,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,currently pregnant,someone else,"0","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.449348,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,21.428571428571427,1.0,9.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,1.5555555555555556,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 140 4 2,SN81FL,urban,140,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"1","1",First wife,1.0,No identified need for FP,1.0,0.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.449348,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"2.1-6.0",13.0,"7+",2,27,wants in 2+ years,wants after 2+ years,0.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 140 4 8,SN81FL,urban,140,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,140,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",7,"6+","6+",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,someone else,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","43","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",9.0,"7+","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.449348,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"2.1-6.0",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 140 5 4,SN81FL,urban,140,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"26","20+",,Inconsistent or don't know,26,"20-29","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.449348,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,30.76923076923077,1.0,6.0,"5 and up",7.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6,"2.1-6.0",14.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 140 5 11,SN81FL,urban,140,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.449348,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,30.76923076923077,1.0,6.0,"5 and up",7.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6,"2.1-6.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 140 6 1,SN81FL,urban,140,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,skilled manual,manual,,does not own,does not own,0,"0",2,"1-2",<3,1,"1",1.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","52","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.449348,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",1,31,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,2,3,2,2,8,4,10 + 140 7 2,SN81FL,urban,140,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",1,"1",1.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","53","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",15,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.449348,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 140 8 1,SN81FL,urban,140,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,140,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",1,"1",1.0,1.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","1-3","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.449348,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,95.0,1.0,11.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.857142857142857,"2.1-6.0",16.0,"7+",0,,,,,,yes,1,3,2,3,2,2,8,4,10 + 140 8 6,SN81FL,urban,140,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,140,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","47","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Serer,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.449348,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,95.0,1.0,11.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.857142857142857,"2.1-6.0",16.0,"7+",0,,,,,,yes,1,3,1,5,3,3,3,2,3 + 140 8 11,SN81FL,urban,140,8,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,140,fatick urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","45","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"3",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.449348,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,95.0,1.0,11.0,"5 and up",9.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.857142857142857,"2.1-6.0",16.0,"7+",0,,,,,,yes,2,2,3,4,4,4,1,6,9 + 140 9 2,SN81FL,urban,140,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",7,"6+","6+",2,"2 or more",1.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","55","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.449348,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",6.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 140 10 2,SN81FL,urban,140,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",1,"1-2",<3,1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,0.0,no,no,0.0,,,,,,,christian,0.0,primary,education,some education,1.0,secondary,yes,education,higher education,Serer,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.449348,0.0,,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"2.1-6.0",11.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 140 11 1,SN81FL,urban,140,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,140,fatick urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"23",More than 5 years,Yes,Yes,No,No,No,No,never,never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","56","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.449348,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 140 13 2,SN81FL,urban,140,13,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,140,fatick urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Poular,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.449348,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,46.666666666666664,1.0,8.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.8571428571428572,"2.1-6.0",14.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 140 13 5,SN81FL,urban,140,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","48","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.449348,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,46.666666666666664,1.0,8.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.8571428571428572,"2.1-6.0",14.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 140 13 8,SN81FL,urban,140,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","33","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.449348,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,46.666666666666664,1.0,8.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.8571428571428572,"2.1-6.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 140 14 2,SN81FL,urban,140,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","51","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.449348,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,41.66666666666667,1.0,7.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.0,"2.1-6.0",8.0,"7+",1,36,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 140 14 4,SN81FL,urban,140,14,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,1.0,1.0,0.0,,,,,0.0,1.0,1.0,1.0,0.0,,,,,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,currently pregnant,someone else,"0","1-3","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"19","15-19",19,"15-19",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.449348,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,41.66666666666667,1.0,7.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.0,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 140 14 8,SN81FL,urban,140,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","33","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.449348,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,41.66666666666667,1.0,7.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.0,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 140 14 10,SN81FL,urban,140,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","34","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.449348,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,41.66666666666667,1.0,7.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,2.0,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 140 15 7,SN81FL,urban,140,15,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,140,fatick urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","36","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,0.449348,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,1.0,3.0,"2.1-6.0",11.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 140 17 4,SN81FL,urban,140,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.449348,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,44.44444444444444,1.0,5.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.8,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 140 18 3,SN81FL,urban,140,18,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.449348,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,4.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",8.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 140 19 8,SN81FL,urban,140,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,other,someone else,"0","0","20",under 30,No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,not at all,at least once a week,not at all,1.0,"1","1",yes,0.449348,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,3.0,"3-4",7.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 140 20 2,SN81FL,urban,140,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.449348,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,18.0,yes,Recieved support,64.28571428571429,1.0,7.0,"5 and up",7.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"2.1-6.0",7.0,"7+",1,30,wants within 2 years,wants within 2 years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 140 20 13,SN81FL,urban,140,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.449348,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,18.0,yes,Recieved support,64.28571428571429,1.0,7.0,"5 and up",7.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.333333333333333,"2.1-6.0",7.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 140 21 1,SN81FL,urban,140,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","52","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"35","20+",35,"20+",36,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,less than once a week,1.0,"1","1",yes,0.449348,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.5,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 140 22 2,SN81FL,urban,140,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140,fatick urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.449348,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",11.0,"7+",1,30,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 143 1 4,SN81FL,urban,143,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,other,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","55","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.479477,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 143 2 1,SN81FL,urban,143,2,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,jointly only,0,"0",3,"3-5","3-5",1,"1",1.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","52","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"30","20+",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.479477,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5,"6.1-30",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 143 2 2,SN8BFL,urban,143,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.517115,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 143 3 2,SN81FL,urban,143,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,don't know,other/dk,less than him,does not own,alone only,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","49","30-59",No,1.0,no,yes,0.0,"no, child wasn't treated",0.0,0.0,0.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.479477,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"6.1-30",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 143 3 2,SN8BFL,urban,143,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",14,"5-14",17,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.517115,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.25,"6.1-30",12.0,"7+",,,,,,,,2,1,3,1,1,6,4,8,8 + 143 4 1,SN81FL,urban,143,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","43","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,at least once a week,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.479477,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.25,"6.1-30",7.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 143 5 4,SN81FL,urban,143,5,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","30","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"29","20+",20,"20+",28,"20-29","25-39",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,yes,,,relatives/friends,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.479477,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.3333333333333335,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 143 6 2,SN8BFL,urban,143,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,3,"3+",7,"6+","6+",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","49","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,1.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.517115,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",11.0,"7+",1,33,wants no more,wants no more,0.0,0.0,yes,2,1,3,1,5,6,4,8,8 + 143 7 1,SN8BFL,urban,143,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",18,"15-19",25,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,don't know,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,less than once a week,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.517115,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 143 9 2,SN81FL,urban,143,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",4,"3-5","3-5",2,"2 or more",1.0,0.0,male,"28",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"12","5-14",12,"5-14",14,<20,<15,6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.479477,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",10.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 143 9 2,SN8BFL,urban,143,9,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",1.0,HW discussed FP,household and domestic,service/domestic,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"3",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.517115,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",7.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 143 11 2,SN81FL,urban,143,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,143,kolda urban,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"35",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","62","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",14,<20,<15,3.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.479477,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",4.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 143 11 6,SN8BFL,urban,143,11,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"1-3","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.517115,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",8.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.8,"6.1-30",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 143 13 2,SN81FL,urban,143,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Poular,"17","15-19",17,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.479477,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 143 13 5,SN8BFL,urban,143,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,other,respondent and husband/partner,respondent and husband/ partner,other,"1-3","1-3","42","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.517115,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,96.29629629629629,1.0,14.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 143 13 8,SN8BFL,urban,143,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","48","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.517115,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,96.29629629629629,1.0,14.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 143 13 15,SN8BFL,urban,143,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,other,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","43","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",16,"15-19",16,<20,"15-19",5.0,"4-6","2+","3+",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.517115,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,96.29629629629629,1.0,14.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 143 14 2,SN81FL,urban,143,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,1.0,"3+",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"0","0",yes,0.479477,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",7.0,"7+",1,24,wants in 2+ years,wants after 2+ years,0.0,0.0,no,1,2,1,5,4,1,6,6,5 + 143 15 2,SN8BFL,urban,143,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,"10",More than 5 years,Yes,Yes,No,Yes,Yes,No,sometimes,never,sometimes,sometimes,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,other,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.517115,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",2.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 143 16 6,SN81FL,urban,143,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","53","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.479477,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",9.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"6.1-30",7.0,"7+",2,25,wants within 2 years,wants within 2 years,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 143 16 7,SN8BFL,urban,143,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,143,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","79","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",22,"20-29","20-24",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.517115,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,2.0,"6.1-30",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 143 17 2,SN81FL,urban,143,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.479477,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 143 17 2,SN8BFL,urban,143,17,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Mandinque,"29","20+",16,"15-19",18,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.517115,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,30.0,1.0,7.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",14.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 143 17 7,SN8BFL,urban,143,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.517115,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,30.0,1.0,7.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",14.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 143 18 2,SN81FL,urban,143,18,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",14,<20,<15,6.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.479477,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,4.5,"6.1-30",4.0,"0-7",0,,never had sex,never had sex,,,no,1,1,2,1,5,7,6,4,5 + 143 18 2,SN8BFL,urban,143,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"2","1",yes,0.517115,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",13.0,"7+",1,30,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 143 19 2,SN81FL,urban,143,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.479477,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 143 19 5,SN8BFL,urban,143,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"3",Less than 5 years,Yes,No,No,No,No,No,never,never,never,never,often,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.517115,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,8.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.2,"6.1-30",14.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 143 20 1,SN8BFL,urban,143,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 12 months,,sales,sales,less than him,jointly only,does not own,1,"1",5,"3-5","3-5",2,"2 or more",1.0,0.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.517115,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 143 20 9,SN8BFL,urban,143,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,2.0,0.0,2.0,2.0,2.0,2.0,2.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,jointly only,does not own,1,"1",8,"6+","6+",0,"0",0.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,15,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,not at all,1.0,"4","1",yes,0.517115,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 143 21 5,SN81FL,urban,143,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.479477,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 143 22 2,SN8BFL,urban,143,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,143,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Poular,"18","15-19",,Inconsistent or don't know,18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.517115,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,78.57142857142857,1.0,7.0,"5 and up",7.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"6.1-30",9.0,"7+",1,35,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 143 22 6,SN81FL,urban,143,22,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,143,kolda urban,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.479477,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,1.0,1.5,"6.1-30",9.0,"7+",0,,,,,,no,1,1,3,3,5,7,8,4,10 + 144 1 2,SN8BFL,urban,144,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,more than him,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,0.0,male,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","67","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.801273,1.0,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,poorest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 144 1 5,SN8BFL,urban,144,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,144,kolda urban,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","67","60+",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.801273,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,poorest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",7.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 144 3 1,SN81FL,urban,144,3,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,services,service/domestic,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,Yes,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","40","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"22","20+",15,"15-19",23,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.488729,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",0.0,"0-7",,,,,,,,1,2,1,5,4,1,2,5,7 + 144 5 2,SN8BFL,urban,144,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","63","60+",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.801273,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 144 6 2,SN8BFL,urban,144,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","32","30-59",Yes,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"24","20+",15,"15-19",21,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.801273,1.0,0.0,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",4.0,"0-7",1,26,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,2,4,4,4,4,1,6,9 + 144 8 1,SN81FL,urban,144,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,144,kolda urban,0.0,not partnered,not currently married,not partnered,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,alone only,alone only,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",not partnered,no,,,condom not used,0,1,,0.0,not married,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.488729,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.81818181818183,1.0,7.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,1,4 + 144 8 3,SN81FL,urban,144,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,144,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,alone only,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.488729,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.81818181818183,1.0,7.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",16.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 144 8 7,SN81FL,urban,144,8,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"2","1",yes,0.488729,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,81.81818181818183,1.0,7.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",16.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,1,5,6,4,8,8 + 144 10 1,SN8BFL,urban,144,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.801273,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,20.0,1.0,1.0,"0-1",4.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,6.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 144 10 2,SN81FL,urban,144,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,No,1.0,no,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",13,"5-14",14,<20,<15,4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.488729,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,3.0,"6.1-30",9.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,1,5,7,4,8,8 + 144 11 2,SN8BFL,urban,144,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.801273,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,71.42857142857143,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",2.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 144 12 3,SN81FL,urban,144,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","31","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.488729,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,0.0,0.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.25,"6.1-30",14.0,"7+",1,27,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 144 13 2,SN8BFL,urban,144,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","42","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.801273,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,60.0,1.0,5.0,"5 and up",5.0,"5 and up",0.25,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.3333333333333335,"6.1-30",17.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 144 14 1,SN8BFL,urban,144,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","46","30-59",No,1.0,no,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.801273,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",10.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 144 15 1,SN8BFL,urban,144,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,144,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,5,"3+",5,"3-5","3-5",1,"1",1.0,1.0,female,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",18,"15-19",18,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.801273,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",10.0,"5 and up",1.6666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,4.0,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 144 15 10,SN8BFL,urban,144,15,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","37","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,at least once a week,not at all,at least once a week,1.0,"2","1",yes,0.801273,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",10.0,"5 and up",1.6666666666666667,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,4.0,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 144 16 2,SN8BFL,urban,144,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,144,kolda urban,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",24,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.801273,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"6.1-30",12.0,"7+",0,,,,,,yes,1,3,1,5,3,3,3,2,3 + 144 17 2,SN8BFL,urban,144,17,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,sometimes,never,sometimes,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.801273,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",7.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 144 18 6,SN81FL,urban,144,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,144,kolda urban,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,2,"2",7,"6+","6+",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","75","60+",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"13","5-14",14,"5-14",15,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,,not at all,at least once a week,not at all,1.0,"1","1",yes,0.488729,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,22.0,yes,Recieved support,100.0,1.0,4.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",3.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 144 19 1,SN8BFL,urban,144,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,,jointly only,jointly only,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,other,respondent and husband/partner,"4+","0","23",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"12","5-14",12,"5-14",12,<20,<15,2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"1",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.801273,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",12.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 144 20 2,SN8BFL,urban,144,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.801273,0.0,,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",2.0,3.0,Other,Other,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",13.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 144 20 4,SN81FL,urban,144,20,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.488729,1.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",8.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 144 21 1,SN8BFL,urban,144,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,144,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.801273,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 145 1 1,SN81FL,urban,145,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","45","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Poular,"20","20+",18,"15-19",18,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,don't know,don't know,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.475287,1.0,,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,0.75,"6.1-30",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 145 1 2,SN8BFL,urban,145,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,145,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,don't know,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.414267,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,16.666666666666664,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 145 2 1,SN8BFL,urban,145,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"2","1",yes,0.414267,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 145 2 6,SN81FL,urban,145,2,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,145,kolda urban,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,jointly only,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","67","60+",Yes,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",33,"30+","25-39",2.0,"1-3","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.475287,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,7.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.7142857142857142,"6.1-30",10.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,2,3 + 145 3 2,SN81FL,urban,145,3,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,alone only,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,often,"yes, but not in the last 12 months",never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,Yes,Yes,No,No,No,No,No,No,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","48","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Poular,"18","15-19",19,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,yes,,,relatives/friends,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.475287,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",5.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 145 5 1,SN8BFL,urban,145,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,don't know,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.414267,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,0.6666666666666666,"6.1-30",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 145 5 3,SN81FL,urban,145,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,145,kolda urban,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,jointly only,jointly only,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"21","20+",18,"15-19",23,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"3","3-5","0-4",not partnered,yes,,,relatives/friends,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.475287,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.5,"6.1-30",9.0,"7+",,,,,,,,2,2,4,4,6,5,5,1,2 + 145 6 1,SN81FL,urban,145,6,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","37","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",17,"15-19",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.475287,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",12.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,2,1,5,4,1,6,6,5 + 145 8 2,SN81FL,urban,145,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,145,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,both alone and jointly,does not own,3,"3+",3,"3-5","3-5",2,"2 or more",1.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"21","20+",21,"20+",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.475287,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,1.6666666666666667,"6.1-30",12.0,"7+",2,23,wants within 2 years,wants within 2 years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 145 8 7,SN81FL,urban,145,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,both alone and jointly,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Poular,"21","20+",21,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"1","1",yes,0.475287,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,1.6666666666666667,"6.1-30",12.0,"7+",2,35,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 145 8 12,SN81FL,urban,145,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,don't know,other/dk,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","45","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Poular,"16","15-19",16,"15-19",18,<20,"15-19",4.0,"4-6","2+","3+",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.475287,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,1.6666666666666667,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 145 9 5,SN8BFL,urban,145,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","70","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.414267,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.3333333333333335,"6.1-30",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 145 10 2,SN8BFL,urban,145,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","42","30-59",No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.414267,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,12.0,"5 and up",8.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.75,"6.1-30",17.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 145 10 7,SN8BFL,urban,145,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.414267,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,12.0,"5 and up",8.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.75,"6.1-30",17.0,"7+",1,20,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 145 10 13,SN8BFL,urban,145,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,jointly only,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","35","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.414267,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,12.0,"5 and up",8.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.75,"6.1-30",17.0,"7+",1,23,wants in 2+ years,wants after 2+ years,0.0,0.0,no,1,1,2,1,2,7,6,3,5 + 145 11 2,SN81FL,urban,145,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","29",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,not at all,1.0,"2","1",yes,0.475287,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,70.0,1.0,7.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,1.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 145 13 2,SN8BFL,urban,145,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,jointly only,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","51","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,christian,0.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",8,"5-14",22,"20-29","20-24",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.414267,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,16.666666666666664,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 145 13 10,SN81FL,urban,145,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,145,kolda urban,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",4,"2 or more",1.0,0.0,male,not partnered,No longer with first partner,Yes,Yes,No,Yes,No,No,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,Wolof,"17","15-19",,Inconsistent or don't know,14,<20,<15,9.0,"7+","2+","2",no one,TBA / no one,have another,,"6","6+","5+",not partnered,no,,,condom not used,1,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.475287,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 145 13 14,SN81FL,urban,145,13,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,,"5","3-5","5+",not partnered,yes,,,pharmacy,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.475287,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 145 13 15,SN81FL,urban,145,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,not working,not working,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,someone else,respondent alone,someone else,"0","1-3","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"0","0",yes,0.475287,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 145 15 2,SN81FL,urban,145,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"2","1",yes,0.475287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 145 16 2,SN81FL,urban,145,16,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","27",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.475287,0.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"6.1-30",6.0,"0-7",1,21,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 145 16 5,SN8BFL,urban,145,16,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","61","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"36","20+",26,"20+",26,"20-29","25-39",3.0,"1-3","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.414267,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,6.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.3333333333333335,"6.1-30",12.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,1 + 145 17 2,SN81FL,urban,145,17,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,145,kolda urban,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",7,"6+","6+",3,"2 or more",1.0,0.0,male,"26",More than 5 years,Yes,Yes,No,No,Yes,No,often,never,often,never,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","61","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",,Inconsistent or don't know,14,<20,<15,10.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.475287,0.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,6.5,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 145 18 1,SN8BFL,urban,145,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,other,other/dk,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Poular,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.414267,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.75,"6.1-30",14.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 145 19 2,SN8BFL,urban,145,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",15,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.414267,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"6.1-30",16.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 145 19 8,SN8BFL,urban,145,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,1.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","58","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.414267,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"6.1-30",16.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 145 20 2,SN81FL,urban,145,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,alone only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","51","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.475287,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,28.57142857142857,1.0,6.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"6.1-30",19.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 145 20 2,SN8BFL,urban,145,20,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,145,kolda urban,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,jointly only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,Poular,"23","20+",18,"15-19",24,"20-29","20-24",5.0,"4-6","2+","2",no one,TBA / no one,have another,,"5","3-5","5+",not partnered,no,,,condom not used,1,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.414267,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",9.0,"7+",0,17,,,,,no,1,3,1,5,3,3,3,1,4 + 145 21 4,SN8BFL,urban,145,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","35","30-59",No,0.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.414267,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,1.0,yes,Recieved support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 145 21 5,SN81FL,urban,145,21,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,0,"0",1,"1-2",<3,2,"2 or more",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Poular,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.475287,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4,"6.1-30",14.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 145 22 2,SN81FL,urban,145,22,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","46","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.475287,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",5.0,"0-7",1,34,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,1,1,7,7,8,8 + 145 22 5,SN8BFL,urban,145,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.414267,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Other,Other,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"6.1-30",8.0,"7+",1,21,wants within 2 years,wants within 2 years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 145 22 9,SN8BFL,urban,145,22,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,145,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",0,"0",<3,2,"2 or more",1.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","37","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.414267,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Other,Other,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8,"6.1-30",8.0,"7+",0,,never had sex,never had sex,,,no,1,1,2,1,2,7,6,3,5 + 146 2 2,SN8BFL,urban,146,2,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",0,"0",<3,1,"1",1.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"1","1",yes,0.435047,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",3.0,"0-7",2,29,wants within 2 years,wants within 2 years,0.0,1.0,no,1,1,2,1,2,7,6,3,5 + 146 3 4,SN8BFL,urban,146,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.435047,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",6.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 146 4 1,SN8BFL,urban,146,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,146,kolda urban,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"15","15-19",15,"15-19",18,<20,"15-19",7.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.435047,0.0,,,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 146 6 2,SN8BFL,urban,146,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",6,"6+","6+",2,"2 or more",1.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"11","5-14",11,"5-14",12,<20,<15,9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.435047,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.0,"6.1-30",5.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 146 7 4,SN8BFL,urban,146,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,1.0,0.0,146,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"13","5-14",,Inconsistent or don't know,13,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.435047,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",7.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 146 7 8,SN8BFL,urban,146,7,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,146,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",,Inconsistent or don't know,10,<20,<15,4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.435047,1.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",7.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 146 9 7,SN8BFL,urban,146,9,,,,,0.0,0.0,,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"23","20+",15,"15-19",16,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.435047,0.0,,,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,1.6666666666666667,"6.1-30",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 146 10 2,SN8BFL,urban,146,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","53","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Poular,"18","15-19",18,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,not at all,1.0,"1","1",yes,0.435047,0.0,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"6.1-30",6.0,"0-7",1,34,wants within 2 years,wants within 2 years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 146 11 8,SN8BFL,urban,146,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","35","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.435047,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.9090909090909092,"6.1-30",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 146 11 13,SN8BFL,urban,146,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","25",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.435047,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.9090909090909092,"6.1-30",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 146 12 4,SN8BFL,urban,146,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,146,kolda urban,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,jointly only,does not own,2,"2",7,"6+","6+",1,"1",1.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,someone else,respondent alone,husband/partner alone,"0","1-3","73","60+",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",26,"20-29","25-39",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.435047,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",11.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.3333333333333335,"6.1-30",6.0,"0-7",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 146 12 16,SN8BFL,urban,146,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,146,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",21,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.435047,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",11.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.3333333333333335,"6.1-30",6.0,"0-7",2,22,unsure timing,"wants, unsure timing",0.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 146 14 2,SN8BFL,urban,146,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,146,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","52","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"1",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.435047,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,5.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"6.1-30",4.0,"0-7",2,26,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,3,1,5,3,3,3,2,3 + 146 14 8,SN8BFL,urban,146,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,146,kolda urban,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.435047,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,5.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2,"6.1-30",4.0,"0-7",2,26,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 146 15 2,SN8BFL,urban,146,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,146,kolda urban,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,jointly only,2,"2",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"24",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",14,"5-14",20,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.435047,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,4.0,"3-4",6.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.3333333333333335,"6.1-30",6.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 146 15 7,SN8BFL,urban,146,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,146,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,jointly only,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.435047,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,4.0,"3-4",6.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.3333333333333335,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 146 16 2,SN8BFL,urban,146,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,2.0,0.0,2.0,0.0,2.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,jointly only,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","55","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Poular,"18","15-19",15,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",both want same,yes,,,relatives/friends,0,1,,,,"5",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.435047,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.92307692307693,1.0,5.0,"5 and up",8.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.625,"6.1-30",12.0,"7+",1,22,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 146 17 3,SN8BFL,urban,146,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,jointly only,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","30","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,yes,,,relatives/friends,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.435047,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,1.0,0.0,,,1.0,0.0,0.0,0.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 146 18 2,SN8BFL,urban,146,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","32","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.435047,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.4,"6.1-30",17.0,"7+",1,27,wants in 2+ years,wants after 2+ years,,1.0,yes,2,1,3,4,1,7,7,3,8 + 146 19 13,SN8BFL,urban,146,19,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.435047,0.0,0.0,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 146 19 19,SN8BFL,urban,146,19,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,146,kolda urban,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,,"6","6+","5+",not partnered,no,,,condom not used,1,1,,,,"0",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.435047,0.0,,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 146 22 9,SN8BFL,urban,146,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,146,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,,jointly only,jointly only,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"16","15-19",16,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,not at all,1.0,"1","1",yes,0.435047,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.85714285714286,1.0,4.0,"3-4",10.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,1.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.75,"6.1-30",6.0,"0-7",1,34,wants in 2+ years,wants after 2+ years,,1.0,no,2,2,3,4,4,4,1,6,9 + 149 3 9,SN81FL,urban,149,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,149,kolda urban,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,1,"1",6,"6+","6+",1,"1",1.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","63","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.480565,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,6.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"6.1-30",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 149 6 2,SN81FL,urban,149,6,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",2,"2 or more",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"2","1",yes,0.480565,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",5.0,"0-7",1,37,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 149 7 2,SN81FL,urban,149,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,yes,,,pharmacy,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"2","1",yes,0.480565,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,50.0,1.0,6.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",10.0,"7+",,,,,,,,1,1,2,1,5,7,6,4,5 + 149 7 8,SN81FL,urban,149,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","34","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",both want same,yes,,,pharmacy,0,1,,,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"0","0",yes,0.480565,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,50.0,1.0,6.0,"5 and up",4.0,"3-4",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",10.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 149 13 2,SN81FL,urban,149,13,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,other,respondent and husband/partner,other,other,"1-3","0","42","30-59",No,0.0,no,no,0.0,,,,,,,christian,0.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"3","3-5","0-4",,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.480565,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 149 14 5,SN81FL,urban,149,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,149,kolda urban,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","52","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"23","20+",24,"20+",26,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,never circumcised,at least once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.480565,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,45.45454545454545,1.0,5.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"6.1-30",14.0,"7+",2,32,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,1 + 149 15 2,SN81FL,urban,149,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,not working,not working,less than him,jointly only,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"16",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","49","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,"1","1",yes,0.480565,0.0,,,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",4.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 149 16 8,SN81FL,urban,149,16,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,jointly only,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.480565,0.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",0.0,"0-7",1,42,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,3,3,5,7,8,4,10 + 149 17 1,SN81FL,urban,149,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,services,service/domestic,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",1,"1",1.0,1.0,female,"13",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"3","1",yes,0.480565,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"6.1-30",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 149 17 7,SN81FL,urban,149,17,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.480565,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"6.1-30",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 149 19 2,SN81FL,urban,149,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,alone only,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",8,"5-14",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","0",<3,"0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.480565,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"6.1-30",0.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 149 20 2,SN81FL,urban,149,20,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.480565,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",7.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 149 21 2,SN81FL,urban,149,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,alone only,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","50","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.480565,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",8.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 149 22 1,SN81FL,urban,149,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,149,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"5","5-14",5,"5-14",25,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.480565,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",1.0,"0-7",1,39,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,1,5,3,3,3,9,6 + 150 2 9,SN81FL,urban,150,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,150,kolda urban,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,jointly only,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"19","15-19",16,"15-19",20,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,,"6","6+","5+",not partnered,yes,,,relatives/friends,1,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.389586,0.0,,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,1,4 + 150 3 2,SN81FL,urban,150,3,1.0,1.0,1.0,1.0,1.0,1.0,1.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,150,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,Yes,No,No,Yes,Yes,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,yes,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",15,"15-19",17,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.389586,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 150 5 2,SN81FL,urban,150,5,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,150,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","65","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.389586,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"6.1-30",12.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 150 5 6,SN81FL,urban,150,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,150,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,4,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","65","60+",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",13,"5-14",28,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.389586,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 150 7 4,SN81FL,urban,150,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,150,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Family,On leave/absent,0.0,All year,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","25",under 30,No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.389586,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 150 9 2,SN81FL,urban,150,9,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,150,kolda urban,1.0,"1","1",First wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,1.0,male,"21",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.389586,1.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 150 10 4,SN81FL,urban,150,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,150,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",8,"5-14",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"2","1",yes,0.389586,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",10.0,"7+",1,32,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,1,2,1,5,7,6,4,5 + 150 10 7,SN81FL,urban,150,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,150,kolda urban,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"22","20+",8,"5-14",26,"20-29","25-39",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,not married,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.389586,1.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,1,4 + 150 11 2,SN81FL,urban,150,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,150,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,0,"0",1,"1-2",<3,2,"2 or more",1.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",8,"5-14",13,<20,<15,3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.389586,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",6.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,1.6666666666666667,"6.1-30",8.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 150 12 2,SN81FL,urban,150,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,150,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",8,"5-14",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.389586,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,6.0,"6.1-30",8.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 150 13 2,SN81FL,urban,150,13,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,150,kolda urban,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","33","30-59",No,0.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"10","5-14",10,"5-14",16,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.389586,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",6.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 150 15 2,SN81FL,urban,150,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,150,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","33","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"1","1",yes,0.389586,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",2.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 150 16 2,SN81FL,urban,150,16,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,150,kolda urban,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,3,"3+",5,"3-5","3-5",2,"2 or more",1.0,1.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.389586,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",9.0,"5 and up",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.7142857142857142,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 150 16 8,SN81FL,urban,150,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,150,kolda urban,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Wolof,"17","15-19",14,"5-14",14,<20,<15,5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.389586,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",9.0,"5 and up",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.7142857142857142,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,1,5,7,4,8,8 + 150 19 2,SN81FL,urban,150,19,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,150,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,male,"12",More than 5 years,Yes,Yes,No,Yes,No,No,never,never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,17,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.389586,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",6.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 150 22 1,SN81FL,urban,150,22,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,1.0,1.0,0.0,150,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.389586,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",0.0,"0-7",1,29,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,6 + 151 1 2,SN8BFL,urban,151,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"21",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.433697,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"6.1-30",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 151 1 3,SN81FL,urban,151,1,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,151,kolda urban,1.0,"1","2",Second or more wife,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,Yes,Yes,Yes,Yes,No,No,"yes, but not in the last 12 months",sometimes,never,never,sometimes,never,never,never,sometimes,never,never,often,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","73","60+",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Mandinque,"20","20+",8,"5-14",20,"20-29","20-24",5.0,"4-6","2+","3+",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.514,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,middle,owner/ co-owner,1.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,36.36363636363637,1.0,6.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,1.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.2,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 151 2 4,SN8BFL,urban,151,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,someone else,currently pregnant,husband/partner alone,"0","1-3","33","30-59",No,0.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"29","20+",14,"5-14",17,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.433697,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",9.0,"7+",1,17,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,3,2,3,5,2,8,4,10 + 151 4 2,SN81FL,urban,151,4,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,"1","1",yes,0.514,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",7.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 151 4 2,SN8BFL,urban,151,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"11","5-14",11,"5-14",12,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.433697,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",1.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 151 5 2,SN81FL,urban,151,5,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,151,kolda urban,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","50","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Mandinque,"17","15-19",17,"15-19",20,"20-29","20-24",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.514,0.0,,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,70.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",12.0,"7+",,,,,,,,1,2,3,5,4,3,3,1,3 + 151 6 2,SN81FL,urban,151,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.514,0.0,,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",7.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 151 6 2,SN8BFL,urban,151,6,,,,,0.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,jointly only,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","42","30-59",No,0.0,no,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"20","20+",20,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.433697,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",10.0,"7+",1,39,wants within 2 years,wants within 2 years,,1.0,yes,1,3,1,5,3,3,3,9,1 + 151 9 2,SN81FL,urban,151,9,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","39","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",22,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"1","1",yes,0.514,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",4.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 151 9 5,SN81FL,urban,151,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",1,"1-2",<3,1,"1",1.0,0.0,male,"8",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"15","15-19",15,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.514,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 151 10 2,SN81FL,urban,151,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",0,"0",<3,1,"1",1.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"25","20+",,Inconsistent or don't know,17,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,less than once a week,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.514,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 151 10 9,SN8BFL,urban,151,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","52","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"2","1",yes,0.433697,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.1666666666666665,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 151 11 4,SN81FL,urban,151,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,2.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"2","1",yes,0.514,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",3.0,4.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.6666666666666665,"6.1-30",1.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 151 12 2,SN81FL,urban,151,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,5,"3+",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.514,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,64.70588235294117,1.0,10.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,2.4285714285714284,"6.1-30",10.0,"7+",1,28,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 151 12 9,SN81FL,urban,151,12,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.514,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,64.70588235294117,1.0,10.0,"5 and up",7.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,2.4285714285714284,"6.1-30",10.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 151 13 2,SN81FL,urban,151,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,yes,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.514,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 151 13 2,SN8BFL,urban,151,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.433697,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 151 14 3,SN81FL,urban,151,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,151,kolda urban,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,0.0,"3+",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",6,"6+","6+",2,"2 or more",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",Yes,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",8.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"1","1",yes,0.514,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"6.1-30",9.0,"7+",2,21,wants no more,wants no more,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 151 14 9,SN81FL,urban,151,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","29",under 30,No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,no,no,never circumcised,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.514,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"6.1-30",9.0,"7+",1,28,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 151 14 12,SN81FL,urban,151,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,1.0,1.0,0.0,"2",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,husband/ partner alone,husband/partner alone,"0","0","21",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.514,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"6.1-30",9.0,"7+",1,20,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 151 15 2,SN81FL,urban,151,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","24",under 30,No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.514,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.6666666666666667,"6.1-30",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 151 16 2,SN81FL,urban,151,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,jointly only,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.514,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,89.47368421052632,1.0,8.0,"5 and up",11.0,"5 and up",1.5,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.8,"6.1-30",10.0,"7+",1,20,wants within 2 years,wants within 2 years,0.0,0.0,no,1,1,2,1,2,7,6,3,5 + 151 17 2,SN8BFL,urban,151,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.433697,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 151 17 3,SN81FL,urban,151,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,don't know,other/dk,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,often,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","28",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.514,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,75.0,1.0,3.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 151 18 2,SN8BFL,urban,151,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,jointly only,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,yes,,,relatives/friends,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.433697,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,20.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",15.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 151 18 7,SN81FL,urban,151,18,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,151,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,other,husband/partner alone,respondent and husband/ partner,other,"0","0","42","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"1",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.514,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,3.3333333333333335,"6.1-30",12.0,"7+",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 151 19 2,SN81FL,urban,151,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","40","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.514,1.0,0.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,7.0,"5 and up",7.0,"5 and up",0.75,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8,"6.1-30",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 151 20 2,SN81FL,urban,151,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,does not own,2,"2",2,"1-2",<3,5,"2 or more",1.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,other,husband/partner alone,respondent alone,other,"0","1-3","50","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.514,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",16.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 151 20 2,SN8BFL,urban,151,20,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","43","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.433697,1.0,,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"6.1-30",5.0,"0-7",1,38,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,1,2,1,2,7,6,3,5 + 151 21 2,SN8BFL,urban,151,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,less than once a week,1.0,"1","1",yes,0.433697,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 151 22 2,SN81FL,urban,151,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,151,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.514,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",5.0,"0-7",1,28,wants no more,wants no more,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 152 1 2,SN8BFL,urban,152,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,alone only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Poular,"21","20+",21,"20+",27,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.249605,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,92.3076923076923,1.0,11.0,"5 and up",2.0,"1-2",0.16666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"6.1-30",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 152 5 5,SN8BFL,urban,152,5,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,152,kolda urban,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,jointly only,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"33",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","72","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.249605,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.2857142857142857,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.4285714285714284,"6.1-30",4.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 152 5 7,SN8BFL,urban,152,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,152,kolda urban,1.0,"1","3+",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,jointly only,jointly only,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","72","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.249605,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.2857142857142857,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.4285714285714284,"6.1-30",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 152 5 13,SN8BFL,urban,152,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,jointly only,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","29",under 30,No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.249605,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.2857142857142857,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.4285714285714284,"6.1-30",4.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 152 7 1,SN8BFL,urban,152,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.249605,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,3.0,"3-4",8.0,"5 and up",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.6666666666666665,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 152 7 6,SN8BFL,urban,152,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"15",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"10","5-14",10,"5-14",13,<20,<15,5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"3",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.249605,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,3.0,"3-4",8.0,"5 and up",1.5,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.6666666666666665,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 152 11 1,SN8BFL,urban,152,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,152,kolda urban,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,about the same,does not own,does not own,0,"0",7,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","70","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"14","5-14",14,"5-14",17,<20,"15-19",8.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.249605,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",0.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 152 12 1,SN8BFL,urban,152,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,152,kolda urban,1.0,"1","2",Second or more wife,1.0,No identified need for FP,1.0,1.0,0.0,,1.0,"3+",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",3,"3-5","3-5",4,"2 or more",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.249605,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.0,"6.1-30",2.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 152 13 2,SN8BFL,urban,152,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,7,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,"3","1",yes,0.249605,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",1.75,2.0,No food cooked in house,Other,,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"6.1-30",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 152 13 8,SN8BFL,urban,152,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,152,kolda urban,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.249605,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",1.75,2.0,No food cooked in house,Other,,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"6.1-30",8.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 152 13 11,SN8BFL,urban,152,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","25",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.249605,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",1.75,2.0,No food cooked in house,Other,,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"6.1-30",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 152 13 14,SN8BFL,urban,152,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.249605,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",9.0,"5 and up",1.75,2.0,No food cooked in house,Other,,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"6.1-30",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 152 14 2,SN8BFL,urban,152,14,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,7,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,don't know,don't know,don't know,not at all,not at all,not at all,0.0,"2","1",yes,0.249605,1.0,0.0,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",10.0,"5 and up",1.75,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.25,"6.1-30",5.0,"0-7",1,25,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 152 14 8,SN8BFL,urban,152,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","28",under 30,No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.249605,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",10.0,"5 and up",1.75,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.25,"6.1-30",5.0,"0-7",1,29,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 152 14 11,SN8BFL,urban,152,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,7,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","28",under 30,No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,not at all,not at all,0.0,"2","1",yes,0.249605,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",10.0,"5 and up",1.75,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.25,"6.1-30",5.0,"0-7",1,26,unsure timing,undecided,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 152 14 15,SN8BFL,urban,152,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,7,"3+",6,"6+","6+",1,"1",1.0,1.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.249605,1.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",10.0,"5 and up",1.75,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.25,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 152 15 4,SN8BFL,urban,152,15,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"5",More than 5 years,Yes,Yes,No,Yes,No,No,often,sometimes,sometimes,sometimes,sometimes,sometimes,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Mandinque,"19","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"0","0",no,0.249605,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 152 16 2,SN8BFL,urban,152,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,husband/ partner alone,respondent alone,"0","1-3","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.249605,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",7.0,"7+",1,38,wants within 2 years,wants within 2 years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 152 17 1,SN8BFL,urban,152,17,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","59","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"1","1",yes,0.249605,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 152 19 4,SN8BFL,urban,152,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","63","60+",Yes,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"17","15-19",,Inconsistent or don't know,16,<20,"15-19",5.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,don't know,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.249605,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,8.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 152 21 1,SN8BFL,urban,152,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,152,kolda urban,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",not partnered,yes,,,pharmacy,1,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.249605,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",6.0,"0-7",,,,,,,,2,2,4,5,6,5,5,1,2 + 152 22 1,SN8BFL,urban,152,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,152,kolda urban,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,yes,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.249605,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.0,1.0,4.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.25,"6.1-30",6.0,"0-7",0,,never had sex,never had sex,,,no,1,1,2,1,2,7,6,3,5 + 159 1 2,SN81FL,urban,159,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,no partner,no partner,not working,not working,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"5","3-5","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.365686,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.8,"0-2.0",12.0,"7+",,,,,,,,2,2,4,5,6,5,5,1,2 + 159 1 4,SN8BFL,urban,159,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,other,someone else,"0","0","45","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.329757,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 159 1 10,SN81FL,urban,159,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","36","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Poular,"17","15-19",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"3","1",yes,0.365686,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.8,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 159 1 19,SN81FL,urban,159,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","51","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Poular,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.365686,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.8,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 159 2 3,SN8BFL,urban,159,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"1","2",Second or more wife,1.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,husband/ partner alone,husband/partner alone,"0","0","60","60+",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,religious prohibition,"4",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.329757,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.85714285714286,1.0,10.0,"5 and up",4.0,"3-4",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.1666666666666665,"0-2.0",12.0,"7+",0,,,,,,no,1,3,2,3,5,2,8,4,10 + 159 2 7,SN8BFL,urban,159,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,husband/ partner alone,someone else,"0","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.329757,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.85714285714286,1.0,10.0,"5 and up",4.0,"3-4",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.1666666666666665,"0-2.0",12.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 159 3 2,SN8BFL,urban,159,3,0.0,1.0,1.0,0.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","32","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",,Inconsistent or don't know,16,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.329757,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",2.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 159 4 2,SN81FL,urban,159,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","45","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.365686,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,8.0,yes,Recieved support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",8.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 159 5 2,SN8BFL,urban,159,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Poular,"22","20+",22,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.329757,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 159 6 2,SN81FL,urban,159,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.365686,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,7.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",9.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,9,6 + 159 6 3,SN8BFL,urban,159,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","35","30-59",No,0.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.329757,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"0-2.0",8.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 159 8 2,SN8BFL,urban,159,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","39","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.329757,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 159 8 3,SN81FL,urban,159,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","42","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,less than once a week,less than once a week,not at all,1.0,"1","1",yes,0.365686,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",12.0,"7+",1,26,wants no more,wants no more,0.0,1.0,no,1,1,2,1,2,7,6,3,5 + 159 9 2,SN81FL,urban,159,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.365686,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 159 9 2,SN8BFL,urban,159,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","36","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.329757,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.85714285714286,1.0,8.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 159 11 2,SN81FL,urban,159,11,1.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.365686,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,90.9090909090909,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 159 12 2,SN8BFL,urban,159,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",18,"15-19",21,"20-29","20-24",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.329757,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",12.0,"7+",2,29,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 159 12 5,SN8BFL,urban,159,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,159,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.329757,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",12.0,"7+",2,29,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 159 12 13,SN81FL,urban,159,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,other,other/dk,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.365686,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,94.11764705882352,1.0,8.0,"5 and up",9.0,"5 and up",0.2,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.2,"0-2.0",10.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 159 13 2,SN8BFL,urban,159,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,jointly only,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.329757,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"0-2.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 159 13 3,SN81FL,urban,159,13,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","46","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.365686,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 159 13 8,SN81FL,urban,159,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.365686,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 159 14 7,SN81FL,urban,159,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,have another,,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.365686,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.66666666666666,1.0,9.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,1.0,3.0,"0-2.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,1,2,1,2,7,6,3,5 + 159 15 1,SN8BFL,urban,159,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,"32",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","60","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",38,"30+","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.329757,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 159 15 6,SN81FL,urban,159,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.365686,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,1.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"0-2.0",6.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 159 16 2,SN8BFL,urban,159,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","29",under 30,No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"1",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.329757,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",8.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,2,1,2,7,6,3,5 + 159 16 8,SN81FL,urban,159,16,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.365686,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,78.57142857142857,1.0,8.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,3.25,"0-2.0",19.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 159 18 2,SN81FL,urban,159,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.365686,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,7.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.8,"0-2.0",9.0,"7+",1,30,wants no more,wants no more,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 159 19 2,SN81FL,urban,159,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.365686,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"0-2.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 159 20 2,SN81FL,urban,159,20,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,don't know,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.365686,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.85714285714286,1.0,12.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",6.0,"0-7",3,29,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 159 20 2,SN8BFL,urban,159,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","1-3","37","30-59",No,1.0,yes,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.329757,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.25,"0-2.0",12.0,"7+",1,31,unsure timing,undecided,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 159 21 2,SN81FL,urban,159,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,Yes,No,No,Yes,Yes,No,never,never,never,never,often,"yes, but not in the last 12 months",never,never,never,never,never,never,No,No,,,No,Yes,No,No,No,No,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.365686,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 159 21 2,SN8BFL,urban,159,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,159,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",8,"6+","6+",1,"1",1.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","63","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",16,"15-19",18,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"1",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.329757,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 159 22 2,SN8BFL,urban,159,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,159,matam urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","44","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.329757,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,4.0,"3-4",7.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"0-2.0",6.0,"0-7",2,20,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 159 22 8,SN8BFL,urban,159,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,159,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","59","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.329757,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,72.72727272727273,1.0,4.0,"3-4",7.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"0-2.0",6.0,"0-7",2,20,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,2,6,5,5,7,2 + 160 1 2,SN81FL,urban,160,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,160,matam urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.421488,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,7.6923076923076925,1.0,7.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.1666666666666665,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 160 1 8,SN81FL,urban,160,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,160,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.421488,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,7.6923076923076925,1.0,7.0,"5 and up",6.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.1666666666666665,"0-2.0",12.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 160 2 2,SN81FL,urban,160,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,2,"2",2,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","78","60+",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.421488,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,6 + 160 2 2,SN8BFL,urban,160,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.37594,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,13.0,yes,Recieved support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",15.0,"7+",1,38,wants no more,wants no more,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 160 3 3,SN8BFL,urban,160,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,female,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"2","1",yes,0.37594,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,16.0,yes,Recieved support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",3.0,"0-7",,,,,,,,1,1,2,1,5,7,6,4,5 + 160 3 4,SN81FL,urban,160,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,female,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"13","5-14",13,"5-14",15,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.421488,1.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,Yes,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.8,"0-2.0",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 160 3 11,SN81FL,urban,160,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","34","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.421488,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,Yes,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.8,"0-2.0",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 160 5 2,SN8BFL,urban,160,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,less than once a week,not at all,less than once a week,1.0,"1","1",yes,0.37594,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",11.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"0-2.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 160 6 4,SN81FL,urban,160,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,1.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.421488,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.25,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 160 7 2,SN8BFL,urban,160,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,male,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.37594,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,9.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6,"0-2.0",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 160 7 9,SN8BFL,urban,160,7,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","48","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",13,<20,<15,2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.37594,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,9.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6,"0-2.0",8.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 160 8 1,SN8BFL,urban,160,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,both alone and jointly,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","62","60+",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.37594,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",5.0,"0-7",0,,,,,,no,1,3,1,5,3,3,3,2,3 + 160 8 3,SN8BFL,urban,160,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.37594,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"0-2.0",5.0,"0-7",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 160 8 18,SN81FL,urban,160,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","42","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","2",no one,TBA / no one,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.421488,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,95.23809523809523,1.0,13.0,"5 and up",7.0,"5 and up",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",10.0,"7+",1,23,unsure timing,undecided,1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 160 9 2,SN8BFL,urban,160,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",8,"6+","6+",2,"2 or more",1.0,0.0,male,"29",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","59","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",10.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.37594,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"0-2.0",18.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 160 9 11,SN81FL,urban,160,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,160,matam urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"22","20+",,Inconsistent or don't know,21,"20-29","20-24",4.0,"4-6","2+","3+",no one,TBA / no one,have another,,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.421488,1.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,91.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.0,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,1,4 + 160 10 2,SN81FL,urban,160,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","55","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",32,"30+","25-39",5.0,"4-6","2+","2",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,not at all,1.0,"1","1",yes,0.421488,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,85.71428571428571,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,7.0,"0-2.0",2.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 160 11 2,SN81FL,urban,160,11,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,160,matam urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,skilled manual,manual,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",9,"6+","6+",0,"0",0.0,0.0,male,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","65","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.421488,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 160 11 8,SN8BFL,urban,160,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,respondent and husband/ partner,other,"0","0","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.37594,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,76.19047619047619,1.0,13.0,"5 and up",7.0,"5 and up",0.8571428571428571,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.625,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 160 11 12,SN8BFL,urban,160,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,currently pregnant,other,"0","0","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.37594,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,76.19047619047619,1.0,13.0,"5 and up",7.0,"5 and up",0.8571428571428571,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.625,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 160 11 16,SN8BFL,urban,160,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,husband/ partner alone,other,"0","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.37594,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,76.19047619047619,1.0,13.0,"5 and up",7.0,"5 and up",0.8571428571428571,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.625,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 160 11 20,SN8BFL,urban,160,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,currently pregnant,other,"0","0","40","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.37594,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,76.19047619047619,1.0,13.0,"5 and up",7.0,"5 and up",0.8571428571428571,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.625,"0-2.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 160 13 1,SN8BFL,urban,160,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",25,"20-29","25-39",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.37594,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 160 13 7,SN81FL,urban,160,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"31","20+",31,"20+",32,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.421488,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,Yes,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 160 16 2,SN81FL,urban,160,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,don't know,does not own,alone only,0,"0",7,"6+","6+",2,"2 or more",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.421488,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6,"0-2.0",8.0,"7+",1,28,wants no more,wants no more,1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 160 18 6,SN8BFL,urban,160,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.37594,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 160 18 12,SN8BFL,urban,160,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.37594,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",13.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 160 19 2,SN81FL,urban,160,19,1.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",12,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",12.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,don't know,no,never circumcised,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.421488,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,86.66666666666667,1.0,9.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.142857142857143,"0-2.0",9.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 160 20 2,SN81FL,urban,160,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,160,matam urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,skilled manual,manual,Family,Currently working,1.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","53","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,yes,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.421488,0.0,,,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",6.0,"5 and up",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,5.0,"0-2.0",6.0,"0-7",2,31,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,3,1,5,3,3,3,9,6 + 160 20 3,SN8BFL,urban,160,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,160,matam urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","51","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",,Inconsistent or don't know,16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.37594,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",4.0,"0-7",1,24,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 160 21 2,SN8BFL,urban,160,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,0.0,male,"28",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","60","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.37594,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,25.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"0-2.0",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 166 1 2,SN81FL,urban,166,1,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,10,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","58","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.481215,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.625,"0-2.0",17.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 166 1 3,SN8BFL,urban,166,1,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,1.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","53","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,yes,not at all,not at all,not at all,0.0,"2","1",yes,0.40572,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,10.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 166 1 8,SN81FL,urban,166,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,10,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","58","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,not at all,less than once a week,1.0,"2","1",yes,0.481215,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.625,"0-2.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 166 1 16,SN81FL,urban,166,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,2.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,10,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.481215,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.625,"0-2.0",17.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 166 1 22,SN81FL,urban,166,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,10,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","34","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.481215,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.625,"0-2.0",17.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 166 2 2,SN81FL,urban,166,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","53","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Poular,"19","15-19",19,"15-19",23,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.481215,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.5,"0-2.0",12.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,2,3 + 166 2 2,SN8BFL,urban,166,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"3","1",yes,0.40572,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",8.0,"5 and up",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,10.0,"0-2.0",4.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 166 3 1,SN81FL,urban,166,3,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,0.0,female,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","48","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.481215,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 166 3 6,SN8BFL,urban,166,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","58","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Soninke,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.40572,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,90.9090909090909,1.0,9.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5714285714285714,"0-2.0",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 166 4 1,SN81FL,urban,166,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,166,matam urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.481215,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"0-2.0",3.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 166 4 2,SN8BFL,urban,166,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",9,"6+","6+",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","55","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.40572,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,48.484848484848484,1.0,10.0,"5 and up",10.0,"5 and up",0.4444444444444444,1.0,Food cooked inside,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3,"0-2.0",8.0,"7+",1,36,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 166 4 12,SN8BFL,urban,166,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.40572,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,48.484848484848484,1.0,10.0,"5 and up",10.0,"5 and up",0.4444444444444444,1.0,Food cooked inside,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3,"0-2.0",8.0,"7+",1,32,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 166 4 17,SN8BFL,urban,166,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",3,"3-5","3-5",1,"1",1.0,1.0,male,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","58","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.40572,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,48.484848484848484,1.0,10.0,"5 and up",10.0,"5 and up",0.4444444444444444,1.0,Food cooked inside,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 166 4 21,SN8BFL,urban,166,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","55","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.40572,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,48.484848484848484,1.0,10.0,"5 and up",10.0,"5 and up",0.4444444444444444,1.0,Food cooked inside,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 166 5 2,SN81FL,urban,166,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,Yes,No,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","46","30-59",Yes,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"19","15-19",19,"15-19",21,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.481215,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,16.666666666666664,1.0,2.0,"2",4.0,"3-4",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"0-2.0",1.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 166 5 5,SN8BFL,urban,166,5,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"21",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.40572,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,78.94736842105263,1.0,10.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7272727272727273,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 166 5 17,SN8BFL,urban,166,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.40572,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,78.94736842105263,1.0,10.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7272727272727273,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 166 6 2,SN8BFL,urban,166,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","47","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",14,<20,<15,6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.40572,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",1,32,wants in 2+ years,wants after 2+ years,,0.0,no,2,1,3,1,5,6,4,8,8 + 166 7 2,SN81FL,urban,166,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",24,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.481215,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.23529411764706,1.0,6.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,5.666666666666667,"0-2.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 166 7 8,SN81FL,urban,166,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","15",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.481215,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.23529411764706,1.0,6.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,3,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,5.666666666666667,"0-2.0",11.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 166 8 1,SN8BFL,urban,166,8,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","55","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.40572,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,83.33333333333334,1.0,2.0,"2",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",4.0,"0-7",1,23,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,3,3,5,7,8,4,10 + 166 9 4,SN8BFL,urban,166,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"1","2",Second or more wife,1.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"24",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","65","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.40572,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,77.77777777777779,1.0,5.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"0-2.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 166 9 6,SN81FL,urban,166,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"1","1",First wife,1.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"33",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","62","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,religious prohibition,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.481215,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.2222222222222223,"0-2.0",7.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 166 9 8,SN81FL,urban,166,9,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,no,yes,yes,not at all,not at all,less than once a week,1.0,"2","1",yes,0.481215,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.2222222222222223,"0-2.0",7.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 166 9 14,SN81FL,urban,166,9,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,166,matam urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","62","60+",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",6.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,religious prohibition,"0",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.481215,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.2222222222222223,"0-2.0",7.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 166 10 6,SN81FL,urban,166,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,someone else,husband/ partner alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.481215,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,86.36363636363636,1.0,11.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"0-2.0",12.0,"7+",1,27,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,2,1,2,7,6,3,5 + 166 11 2,SN81FL,urban,166,11,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Poular,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.481215,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,76.47058823529412,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 166 11 2,SN8BFL,urban,166,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",7,"6+","6+",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","1-3","49","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.40572,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,87.5,1.0,6.0,"5 and up",10.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,16.0,"0-2.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 166 11 10,SN81FL,urban,166,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,1.0,1.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,other,other,Self,Worked in the past year,0.0,Occassional,Worked last 12 months,,services,service/domestic,more than him,does not own,does not own,4,"3+",2,"1-2",<3,1,"1",1.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"1","1",yes,0.481215,0.0,,,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,76.47058823529412,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",9.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 166 11 11,SN8BFL,urban,166,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,2.0,2.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"18","15-19",18,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.40572,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,87.5,1.0,6.0,"5 and up",10.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,16.0,"0-2.0",7.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 166 12 1,SN8BFL,urban,166,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,0,"0",5,"3-5","3-5",2,"2 or more",1.0,1.0,female,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",15,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,yes,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.40572,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,13.0,yes,Recieved support,100.0,1.0,1.0,"0-1",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",3.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 166 12 2,SN81FL,urban,166,12,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",35,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,don't know,no,never circumcised,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.481215,0.0,,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,0.0,,,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",4.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 166 13 2,SN81FL,urban,166,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.481215,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,90.32258064516128,1.0,8.0,"5 and up",12.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",10.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 166 13 13,SN81FL,urban,166,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,other,other/dk,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","68","60+",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.481215,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,90.32258064516128,1.0,8.0,"5 and up",12.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.3333333333333335,"0-2.0",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 166 14 1,SN8BFL,urban,166,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,skilled manual,manual,,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.40572,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 166 14 2,SN81FL,urban,166,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,2.0,1.0,2.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,166,matam urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,6,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",21,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,undecided,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.481215,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,66.66666666666666,1.0,5.0,"5 and up",10.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",7.0,"7+",2,34,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 166 14 8,SN81FL,urban,166,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,2.0,1.0,2.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,166,matam urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,6,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.481215,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,66.66666666666666,1.0,5.0,"5 and up",10.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",7.0,"7+",2,34,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 166 15 2,SN81FL,urban,166,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,at least once a week,not at all,1.0,"2","1",yes,0.481215,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",13.0,"5 and up",2.3333333333333335,3.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.166666666666667,"0-2.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 166 15 11,SN81FL,urban,166,15,0.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,1.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","34","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,don't know,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.481215,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",13.0,"5 and up",2.3333333333333335,3.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.166666666666667,"0-2.0",0.0,"0-7",,,,,,,,1,2,4,5,6,3,3,1,6 + 166 15 14,SN8BFL,urban,166,15,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.40572,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",11.0,"5 and up",0.42857142857142855,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7142857142857144,"0-2.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 166 15 16,SN81FL,urban,166,15,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,2.0,1.0,2.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,7,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,Yes,No,Yes,No,No,Yes,never,never,never,never,"yes, but not in the last 12 months",never,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,"yes, but not in the last 12 months",No,No,,,No,No,Yes,No,No,No,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.481215,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",13.0,"5 and up",2.3333333333333335,3.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.166666666666667,"0-2.0",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 166 17 2,SN81FL,urban,166,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","47","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Poular,"22","20+",22,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.481215,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,14.285714285714285,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 166 17 2,SN8BFL,urban,166,17,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.40572,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,12.0,yes,Recieved support,87.5,1.0,2.0,"2",6.0,"5 and up",3.0,4.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"0-2.0",1.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 166 18 2,SN81FL,urban,166,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,1.0,1.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",8,"6+","6+",1,"1",1.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"1","1",yes,0.481215,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,88.88888888888889,1.0,3.0,"3-4",6.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,1.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",1,29,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 166 18 6,SN8BFL,urban,166,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,religious prohibition,"2",1.0,1.0,no,yes,yes,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.40572,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,13.0,yes,Recieved support,90.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 166 18 9,SN8BFL,urban,166,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Poular,"15","15-19",15,"15-19",21,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.40572,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,13.0,yes,Recieved support,90.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",5.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 166 19 2,SN8BFL,urban,166,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",10,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","62","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.40572,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,93.75,1.0,6.0,"5 and up",10.0,"5 and up",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",3.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 166 19 12,SN8BFL,urban,166,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","51","30-59",No,0.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.40572,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,93.75,1.0,6.0,"5 and up",10.0,"5 and up",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"0-2.0",3.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 166 20 2,SN8BFL,urban,166,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"2","1",yes,0.40572,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",17.0,"7+",1,31,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 166 21 2,SN81FL,urban,166,21,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,166,matam urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,male,"33",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","59","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",25,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.481215,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,4.0,yes,Recieved support,94.73684210526315,1.0,8.0,"5 and up",11.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.1666666666666665,"0-2.0",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 166 21 8,SN81FL,urban,166,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","59","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"29","20+",29,"20+",30,"30+","25-39",6.0,"4-6","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,yes,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.481215,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,4.0,yes,Recieved support,94.73684210526315,1.0,8.0,"5 and up",11.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.1666666666666665,"0-2.0",11.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 166 22 2,SN8BFL,urban,166,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"3","1",yes,0.40572,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,62.5,1.0,3.0,"3-4",5.0,"5 and up",3.0,4.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"0-2.0",3.0,"0-7",1,36,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 166 22 4,SN81FL,urban,166,22,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,166,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.481215,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,12.0,yes,Recieved support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",1.25,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.3333333333333335,"0-2.0",6.0,"0-7",1,19,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,3,3,5,7,8,4,10 + 167 1 1,SN81FL,urban,167,1,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,,,,,0.0,1.0,1.0,1.0,0.0,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",8,"6+","6+",0,"0",0.0,1.0,female,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"17","15-19",17,"15-19",19,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",1.0,1.0,no,yes,never circumcised,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.418461,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,5.0,yes,Recieved support,78.94736842105263,1.0,7.0,"5 and up",12.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.75,"0-2.0",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 167 2 2,SN81FL,urban,167,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","28",under 30,No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.418461,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"0-2.0",12.0,"7+",1,21,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 167 2 3,SN8BFL,urban,167,2,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","76","60+",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.234076,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.33333333333333,1.0,9.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.142857142857143,"0-2.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 167 2 6,SN8BFL,urban,167,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.234076,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.33333333333333,1.0,9.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.142857142857143,"0-2.0",9.0,"7+",2,19,wants in 2+ years,wants after 2+ years,,1.0,no,1,1,2,1,2,7,6,3,5 + 167 2 10,SN8BFL,urban,167,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"11","5-14",,Inconsistent or don't know,8,<20,<15,3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,yes,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.234076,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,73.33333333333333,1.0,9.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.142857142857143,"0-2.0",9.0,"7+",2,19,wants in 2+ years,wants after 2+ years,,1.0,no,1,1,2,1,5,7,6,4,5 + 167 3 3,SN81FL,urban,167,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","64","60+",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.418461,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,3.0,yes,Recieved support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.75,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 167 4 3,SN8BFL,urban,167,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,husband/ partner alone,husband/partner alone,"0","0","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,yes,never circumcised,at least once a week,less than once a week,less than once a week,1.0,"2","1",yes,0.234076,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,58.333333333333336,1.0,7.0,"5 and up",5.0,"5 and up",1.6666666666666667,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",9.0,"7+",1,34,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,1,2,1,5,7,6,4,5 + 167 4 4,SN81FL,urban,167,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,don't know,other/dk,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",31,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,don't know,don't know,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.418461,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,90.0,1.0,16.0,"5 and up",4.0,"3-4",0.2222222222222222,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,16,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.125,"0-2.0",11.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 167 4 9,SN8BFL,urban,167,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,no,yes,yes,at least once a week,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.234076,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,58.333333333333336,1.0,7.0,"5 and up",5.0,"5 and up",1.6666666666666667,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"0-2.0",9.0,"7+",1,28,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,2,3,5,2,8,4,10 + 167 5 2,SN81FL,urban,167,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","57","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.418461,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.333333333333333,"0-2.0",12.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 167 5 8,SN8BFL,urban,167,5,0.0,1.0,1.0,1.0,1.0,1.0,1.0,,,,0.0,1.0,1.0,1.0,1.0,1.0,1.0,2.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,7,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"1",1.0,1.0,no,yes,yes,not at all,not at all,less than once a week,1.0,"2","1",yes,0.234076,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,60.0,1.0,11.0,"5 and up",9.0,"5 and up",2.3333333333333335,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.857142857142857,"0-2.0",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 167 5 9,SN81FL,urban,167,5,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,1.0,male,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","51","30-59",No,0.0,no,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.418461,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.333333333333333,"0-2.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 167 5 12,SN8BFL,urban,167,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,7,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,yes,yes,less than once a week,not at all,less than once a week,1.0,"2","1",yes,0.234076,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,60.0,1.0,11.0,"5 and up",9.0,"5 and up",2.3333333333333335,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.857142857142857,"0-2.0",15.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 167 5 19,SN81FL,urban,167,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,1.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","51","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.418461,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.333333333333333,"0-2.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 167 6 8,SN8BFL,urban,167,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","29",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.234076,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",6.0,"0-7",1,29,wants in 2+ years,wants after 2+ years,,0.0,no,1,2,1,5,6,1,2,5,7 + 167 7 6,SN81FL,urban,167,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,not working,not working,,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"24",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","73","60+",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.418461,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,6.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 167 8 2,SN8BFL,urban,167,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","40","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",32,"30+","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.234076,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,15.0,"5 and up",5.0,"5 and up",0.875,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6363636363636362,"0-2.0",10.0,"7+",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 167 8 8,SN8BFL,urban,167,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","28",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.234076,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,15.0,"5 and up",5.0,"5 and up",0.875,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6363636363636362,"0-2.0",10.0,"7+",1,26,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 167 8 20,SN8BFL,urban,167,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","28",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,1.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,less than once a week,1.0,"1","1",yes,0.234076,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,15.0,"5 and up",5.0,"5 and up",0.875,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6363636363636362,"0-2.0",10.0,"7+",1,28,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 167 9 4,SN8BFL,urban,167,9,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,respondent and husband/ partner,other,"0","0","45","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.234076,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,90.0,1.0,9.0,"5 and up",11.0,"5 and up",0.4,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"0-2.0",11.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 167 10 2,SN81FL,urban,167,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,167,matam urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","76","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.418461,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",3.0,"3-4",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.75,"0-2.0",10.0,"7+",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 167 10 12,SN8BFL,urban,167,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,other,other,other,husband/ partner alone,other,"0","1-3","37","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.234076,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,14.0,yes,Recieved support,80.95238095238095,1.0,8.0,"5 and up",12.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,13,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.6153846153846154,"0-2.0",7.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 167 12 1,SN81FL,urban,167,12,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,1.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.418461,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,4.0,"0-2.0",4.0,"0-7",0,,,,,,no,1,3,2,3,2,2,8,4,10 + 167 12 2,SN8BFL,urban,167,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",5,"3-5","3-5",3,"2 or more",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"33","20+",33,"20+",33,"30+","25-39",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.234076,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,78.94736842105263,1.0,10.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.375,"0-2.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 167 12 11,SN8BFL,urban,167,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","53","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.234076,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,78.94736842105263,1.0,10.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.375,"0-2.0",5.0,"0-7",1,32,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 167 13 5,SN8BFL,urban,167,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.234076,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,9.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.5,"0-2.0",13.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 167 13 10,SN8BFL,urban,167,13,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,Occassional,Didn't work last 12 months,,not working,not working,husband no earnings,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","42","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.234076,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,9.0,"5 and up",4.0,"3-4",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.5,"0-2.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 167 14 3,SN8BFL,urban,167,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,1.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/ partner alone,husband/partner alone,"1-3","1-3","50","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.234076,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.25,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",14.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 167 14 9,SN81FL,urban,167,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",7,"6+","6+",0,"0",0.0,1.0,female,"33",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","59","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.418461,1.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,4.0,yes,Recieved support,66.66666666666666,1.0,9.0,"5 and up",9.0,"5 and up",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,1.3,"0-2.0",11.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 167 14 14,SN81FL,urban,167,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.418461,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,4.0,yes,Recieved support,66.66666666666666,1.0,9.0,"5 and up",9.0,"5 and up",0.2,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,1.3,"0-2.0",11.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,4,1,6,6,5 + 167 15 2,SN8BFL,urban,167,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.234076,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,82.35294117647058,1.0,9.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",8.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 167 15 6,SN81FL,urban,167,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.418461,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,75.0,1.0,6.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6,"0-2.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 167 15 9,SN8BFL,urban,167,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",3,"3-5","3-5",2,"2 or more",1.0,1.0,male,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",24,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.234076,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,82.35294117647058,1.0,9.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 167 15 13,SN8BFL,urban,167,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","41","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.234076,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,82.35294117647058,1.0,9.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.2,"0-2.0",8.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 167 16 2,SN8BFL,urban,167,16,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","46","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",22,"20-29","20-24",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.234076,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,77.77777777777779,1.0,3.0,"3-4",6.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,4.5,"0-2.0",2.0,"0-7",1,33,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 167 17 2,SN8BFL,urban,167,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",1,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/ partner alone,husband/partner alone,"1-3","1-3","58","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"24","20+",24,"20+",30,"30+","25-39",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.234076,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",2.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 167 18 4,SN8BFL,urban,167,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","26",under 30,No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.234076,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,75.0,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",10.0,"7+",1,23,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 167 18 7,SN8BFL,urban,167,18,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"0","0","26",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.234076,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,75.0,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",10.0,"7+",1,22,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 167 18 9,SN8BFL,urban,167,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.234076,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,75.0,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"0-2.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 167 18 15,SN81FL,urban,167,18,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.418461,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,5.0,yes,Recieved support,95.23809523809523,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",10.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,6 + 167 18 17,SN81FL,urban,167,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","25",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.418461,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,5.0,yes,Recieved support,95.23809523809523,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"0-2.0",10.0,"7+",0,,,,,,no,1,1,2,1,2,7,6,3,5 + 167 19 3,SN81FL,urban,167,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.418461,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"0-2.0",5.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 167 19 10,SN8BFL,urban,167,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",23,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.234076,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,82.35294117647058,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.25,"0-2.0",4.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 167 19 14,SN8BFL,urban,167,19,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.234076,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,82.35294117647058,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.25,"0-2.0",4.0,"0-7",,,,,,,,1,1,3,3,5,7,8,4,10 + 167 20 9,SN8BFL,urban,167,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","32","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"11","5-14",11,"5-14",13,<20,<15,3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.234076,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,91.66666666666666,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",6.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,1,5,6,4,8,8 + 167 20 21,SN8BFL,urban,167,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.234076,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,91.66666666666666,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",6.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 167 20 22,SN81FL,urban,167,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","37","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"14","5-14",14,"5-14",17,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.418461,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.87878787878788,1.0,12.0,"5 and up",8.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3,"0-2.0",8.0,"7+",0,,,,,,no,1,3,2,3,5,2,8,4,10 + 167 20 23,SN8BFL,urban,167,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.234076,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,91.66666666666666,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.6666666666666665,"0-2.0",6.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 167 20 26,SN81FL,urban,167,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.418461,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.87878787878788,1.0,12.0,"5 and up",8.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3,"0-2.0",8.0,"7+",0,,,,,,no,1,1,2,1,2,7,6,3,5 + 167 20 29,SN81FL,urban,167,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"26","20+",26,"20+",27,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.418461,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.87878787878788,1.0,12.0,"5 and up",8.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3,"0-2.0",8.0,"7+",0,,,,,,no,1,2,1,5,6,1,2,5,7 + 167 21 4,SN8BFL,urban,167,21,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","48","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.234076,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.6,"0-2.0",6.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,1 + 167 21 11,SN8BFL,urban,167,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,other,other,other,respondent and husband/ partner,other,"0","0","41","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.234076,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.6,"0-2.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 167 22 1,SN81FL,urban,167,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","35","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",26,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.418461,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,richest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"0-2.0",0.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 167 22 4,SN8BFL,urban,167,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,167,matam urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","34","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.234076,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,5.0,"5 and up",2.0,"1-2",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"0-2.0",0.0,"0-7",1,32,wants within 2 years,wants within 2 years,,1.0,no,2,2,3,4,4,4,1,6,9 + 173 1 2,SN8BFL,urban,173,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,1.0,0.0,0.0,1.0,1.0,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.280421,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,25.0,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",15.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 173 1 7,SN8BFL,urban,173,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","45","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",24,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.280421,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,25.0,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",15.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 173 1 11,SN8BFL,urban,173,1,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",Yes,1.0,yes,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"11","5-14",11,"5-14",23,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.280421,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,25.0,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 173 2 7,SN81FL,urban,173,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,6,"3+",1,"1-2",<3,1,"1",1.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","26",under 30,No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.269373,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,68.42105263157895,1.0,10.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7142857142857144,"2.1-6.0",9.0,"7+",1,24,wants within 2 years,wants within 2 years,0.0,0.0,no,2,1,3,1,5,6,4,8,8 + 173 2 12,SN81FL,urban,173,2,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.269373,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,68.42105263157895,1.0,10.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7142857142857144,"2.1-6.0",9.0,"7+",0,25,,,,,no,2,2,4,2,6,5,5,7,2 + 173 4 1,SN81FL,urban,173,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent and husband/partner,respondent alone,respondent alone,"1-3","4+","48","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"13","5-14",13,"5-14",22,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,85.71428571428571,1.0,6.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.5,"2.1-6.0",14.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,9,6 + 173 4 2,SN81FL,urban,173,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.269373,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,85.71428571428571,1.0,6.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.5,"2.1-6.0",14.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 173 5 2,SN8BFL,urban,173,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.280421,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",11.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 173 6 2,SN81FL,urban,173,6,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",10.0,"7+",1,30,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,2,3,2,2,8,4,10 + 173 6 2,SN8BFL,urban,173,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,1,"1",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","62","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",18,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.280421,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"2.1-6.0",4.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 173 7 2,SN8BFL,urban,173,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","56","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,yes,,,pharmacy,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.280421,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,12.5,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",15.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 173 7 4,SN81FL,urban,173,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","37","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,1.0,1.25,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 173 8 2,SN81FL,urban,173,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,other,other/dk,more than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","52","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Wolof,"16","15-19",16,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,11.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",12.0,"7+",2,25,wants within 2 years,wants within 2 years,1.0,0.0,yes,1,3,2,3,2,2,8,4,10 + 173 8 7,SN81FL,urban,173,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,other,other/dk,more than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","52","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",15,"15-19",19,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.269373,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,11.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",12.0,"7+",2,25,wants within 2 years,wants within 2 years,1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 173 8 7,SN8BFL,urban,173,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,6,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.280421,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2222222222222223,"2.1-6.0",12.0,"7+",1,25,wants within 2 years,wants within 2 years,0.0,0.0,no,1,2,1,5,6,1,2,5,7 + 173 8 11,SN8BFL,urban,173,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.280421,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2222222222222223,"2.1-6.0",12.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 173 8 14,SN8BFL,urban,173,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,alone only,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.280421,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2222222222222223,"2.1-6.0",12.0,"7+",1,31,wants in 2+ years,wants after 2+ years,0.0,0.0,no,1,2,1,5,4,1,6,6,5 + 173 8 16,SN81FL,urban,173,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,more than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.269373,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,11.0,"5 and up",7.0,"5 and up",0.6,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",12.0,"7+",1,39,wants within 2 years,wants within 2 years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 173 8 17,SN8BFL,urban,173,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,sales,sales,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,don't know,don't know,don't know,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.280421,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.2222222222222223,"2.1-6.0",12.0,"7+",1,30,wants within 2 years,wants within 2 years,0.0,0.0,no,1,1,2,1,2,7,6,3,5 + 173 9 2,SN81FL,urban,173,9,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,173,kaffrine urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.44444444444444,1.0,9.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.5,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 173 9 2,SN8BFL,urban,173,9,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,4,"3+",4,"3-5","3-5",1,"1",1.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","56","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.280421,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,96.29629629629629,1.0,12.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5714285714285716,"2.1-6.0",14.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 173 9 8,SN81FL,urban,173,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"24","20+",24,"20+",27,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.44444444444444,1.0,9.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.5,"2.1-6.0",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 173 9 9,SN8BFL,urban,173,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,1.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","15",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.280421,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,96.29629629629629,1.0,12.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5714285714285716,"2.1-6.0",14.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 173 9 13,SN81FL,urban,173,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","35","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.44444444444444,1.0,9.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.5,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 173 9 16,SN81FL,urban,173,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","1-3","30","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.269373,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.44444444444444,1.0,9.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,4.5,"2.1-6.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 173 10 4,SN81FL,urban,173,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",Yes,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,17,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.5,"2.1-6.0",15.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 173 10 9,SN81FL,urban,173,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","31","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.269373,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.5,"2.1-6.0",15.0,"7+",1,28,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 173 11 1,SN81FL,urban,173,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","57","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,4.0,"3-4",3.0,"3-4",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,6.0,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 173 11 1,SN8BFL,urban,173,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,alone only,3,"3+",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","51","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,christian,0.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.280421,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,4.0,"3-4",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 173 11 8,SN8BFL,urban,173,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.280421,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,4.0,"3-4",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",17.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 173 13 2,SN81FL,urban,173,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",6,"6+","6+",2,"2 or more",1.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",,Inconsistent or don't know,15,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.269373,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,8.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 173 13 2,SN8BFL,urban,173,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.280421,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 173 13 8,SN81FL,urban,173,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,other,someone else,"0","1-3","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,8.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",5.0,"0-7",,,,,,,,1,2,3,5,4,3,3,1,3 + 173 14 1,SN8BFL,urban,173,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,other,other/dk,less than him,alone only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.280421,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"2.1-6.0",8.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 173 14 7,SN81FL,urban,173,14,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,173,kaffrine urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Worked in the past year,0.0,Seasonal,no partner,no partner,not working,not working,,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",5.0,"4-6","2+","3+",no one,TBA / no one,have another,,"5","3-5","5+",not partnered,yes,,,pharmacy,1,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,1.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,95.45454545454545,1.0,12.0,"5 and up",8.0,"5 and up",0.2,1.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",7.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,1,4 + 173 14 12,SN81FL,urban,173,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,female,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","49","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,95.45454545454545,1.0,12.0,"5 and up",8.0,"5 and up",0.2,1.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",7.0,"7+",1,28,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,2,3 + 173 14 18,SN81FL,urban,173,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","54","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,95.45454545454545,1.0,12.0,"5 and up",8.0,"5 and up",0.2,1.0,Food cooked inside,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",7.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 173 15 2,SN81FL,urban,173,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","60","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,10.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.4285714285714284,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 173 15 8,SN81FL,urban,173,15,,,,,1.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,173,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","0","60","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,10.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.4285714285714284,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 173 15 15,SN81FL,urban,173,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","0","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.269373,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.23529411764706,1.0,10.0,"5 and up",7.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,0.0,2.4285714285714284,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 173 16 1,SN81FL,urban,173,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",2.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 173 17 1,SN81FL,urban,173,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,173,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",8,"6+","6+",2,"2 or more",1.0,1.0,female,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","58","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",11.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 173 18 2,SN81FL,urban,173,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","42","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"33","20+",33,"20+",34,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.269373,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,40.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6666666666666667,"2.1-6.0",18.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 173 18 2,SN8BFL,urban,173,18,0.0,0.0,0.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",14,"5-14",17,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.280421,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",11.0,"7+",1,32,wants in 2+ years,wants after 2+ years,0.0,0.0,no,1,3,2,3,5,2,8,4,10 + 173 18 12,SN8BFL,urban,173,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",21,"20+",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.280421,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",11.0,"7+",1,28,wants within 2 years,wants within 2 years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 173 19 3,SN81FL,urban,173,19,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"1","3+",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","67","60+",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.269373,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,12.0,"5 and up",8.0,"5 and up",0.7142857142857143,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,1.0,2.375,"2.1-6.0",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 173 19 8,SN81FL,urban,173,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","35","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.269373,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,12.0,"5 and up",8.0,"5 and up",0.7142857142857143,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,1.0,2.375,"2.1-6.0",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 173 19 11,SN81FL,urban,173,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.269373,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,12.0,"5 and up",8.0,"5 and up",0.7142857142857143,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Soap but no water observed,No water and/or soap observed,1.0,2.375,"2.1-6.0",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 173 20 2,SN81FL,urban,173,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,173,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,alone only,2,"2",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","48","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"17","15-19",17,"15-19",17,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.269373,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.9090909090909,1.0,6.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"2.1-6.0",11.0,"7+",2,26,wants within 2 years,wants within 2 years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 173 21 1,SN81FL,urban,173,21,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,173,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,1.0,female,"23",More than 5 years,Yes,Yes,No,Yes,No,No,never,sometimes,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","54","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",6.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.269373,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 173 22 2,SN81FL,urban,173,22,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,173,kaffrine urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"21","20+",21,"20+",25,"20-29","25-39",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"3","3-5","0-4",not partnered,yes,,,pharmacy,1,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.269373,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,8.0,"5 and up",1.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,5,6,5,5,1,2 + 174 1 3,SN8BFL,urban,174,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,female,"9",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,14.0,yes,Recieved support,100.0,1.0,5.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.3333333333333333,"2.1-6.0",9.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 174 1 14,SN81FL,urban,174,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,No,No,Yes,No,No,No,No,No,No,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",15,"15-19",19,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,1.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,81.81818181818183,1.0,12.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.6666666666666665,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 1 18,SN81FL,urban,174,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",22,"20-29","20-24",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,81.81818181818183,1.0,12.0,"5 and up",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.6666666666666665,"2.1-6.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 174 2 2,SN8BFL,urban,174,2,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,alone only,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Wolof,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.353519,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,92.85714285714286,1.0,6.0,"5 and up",8.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",12.0,"7+",2,20,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 174 2 3,SN81FL,urban,174,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,yes,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.29448,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",8.0,"7+",1,33,wants within 2 years,wants within 2 years,0.0,0.0,no,2,2,3,4,4,4,1,6,9 + 174 2 9,SN8BFL,urban,174,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,92.85714285714286,1.0,6.0,"5 and up",8.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",12.0,"7+",2,20,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 174 3 2,SN81FL,urban,174,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,9,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.8,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7777777777777777,"2.1-6.0",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 174 3 2,SN8BFL,urban,174,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,6,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,1.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.0,"2.1-6.0",1.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 174 3 6,SN8BFL,urban,174,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.0,"2.1-6.0",1.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 3 8,SN8BFL,urban,174,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,1.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,6,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"0","0",no,0.353519,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.0,"2.1-6.0",1.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 174 3 11,SN81FL,urban,174,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,9,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.29448,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.8,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7777777777777777,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 174 3 14,SN8BFL,urban,174,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","30","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.353519,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.0,"2.1-6.0",1.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 174 3 17,SN81FL,urban,174,3,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,9,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","55","30-59",Yes,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",18,"15-19",20,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.29448,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.8,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7777777777777777,"2.1-6.0",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 174 3 17,SN8BFL,urban,174,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.0,"2.1-6.0",1.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 3 20,SN8BFL,urban,174,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,6,"3+",10,"6+","6+",1,"1",1.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",11.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.353519,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,12.0,"5 and up",8.0,"5 and up",0.8571428571428571,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,1.0,3.0,"2.1-6.0",1.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 174 3 21,SN81FL,urban,174,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",,Inconsistent or don't know,23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.29448,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,72.0,1.0,8.0,"5 and up",12.0,"5 and up",1.8,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.7777777777777777,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 174 4 7,SN8BFL,urban,174,4,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"19","15-19",19,"15-19",22,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.353519,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,69.56521739130434,1.0,11.0,"5 and up",9.0,"5 and up",0.7142857142857143,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2857142857142856,"2.1-6.0",11.0,"7+",2,33,wants no more,wants no more,1.0,1.0,yes,1,3,1,5,3,3,3,2,3 + 174 4 8,SN81FL,urban,174,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,91.66666666666666,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",11.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 174 4 14,SN8BFL,urban,174,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,2.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","44","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.353519,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,69.56521739130434,1.0,11.0,"5 and up",9.0,"5 and up",0.7142857142857143,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2857142857142856,"2.1-6.0",11.0,"7+",1,38,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 174 4 22,SN8BFL,urban,174,4,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,5,"3+",1,"1-2",<3,2,"2 or more",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,at least once a week,at least once a week,at least once a week,1.0,"0","0",no,0.353519,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,69.56521739130434,1.0,11.0,"5 and up",9.0,"5 and up",0.7142857142857143,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.2857142857142856,"2.1-6.0",11.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 174 5 2,SN81FL,urban,174,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,20,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.29448,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,4.0,"3-4",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",3.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 174 5 6,SN8BFL,urban,174,5,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.353519,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,86.95652173913044,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.75,"2.1-6.0",12.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 174 5 7,SN81FL,urban,174,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","48","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.29448,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,4.0,"3-4",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 5 12,SN8BFL,urban,174,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,86.95652173913044,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.75,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 5 17,SN8BFL,urban,174,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,86.95652173913044,1.0,9.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,5.75,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 174 6 2,SN81FL,urban,174,6,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,76.92307692307693,1.0,7.0,"5 and up",6.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.2,"2.1-6.0",10.0,"7+",2,23,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,1,5,4,1,6,6,5 + 174 6 9,SN81FL,urban,174,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,76.92307692307693,1.0,7.0,"5 and up",6.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.2,"2.1-6.0",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 174 7 2,SN81FL,urban,174,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"13","5-14",13,"5-14",16,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,0.0,,,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.29448,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,71.42857142857143,1.0,8.0,"5 and up",6.0,"5 and up",0.75,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",4.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 174 7 2,SN8BFL,urban,174,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",28,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"2.1-6.0",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 174 7 5,SN81FL,urban,174,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",7,"6+","6+",0,"0",0.0,1.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,someone else,husband/ partner alone,husband/partner alone,"0","0","48","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",17,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.29448,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,71.42857142857143,1.0,8.0,"5 and up",6.0,"5 and up",0.75,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 7 11,SN81FL,urban,174,7,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",1,"1-2",<3,1,"1",1.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"21","20+",21,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.29448,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,71.42857142857143,1.0,8.0,"5 and up",6.0,"5 and up",0.75,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",4.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 174 8 1,SN81FL,urban,174,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,0,"0",5,"3-5","3-5",2,"2 or more",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","58","30-59",Yes,1.0,yes,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",20,"20-29","20-24",8.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.29448,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,14.0,yes,Recieved support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,1.0,3.5,"2.1-6.0",3.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 174 8 1,SN8BFL,urban,174,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,174,kaffrine urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,0,"0",2,"1-2",<3,1,"1",1.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,Wolof,"16","15-19",16,"15-19",17,<20,"15-19",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",not partnered,no,,,condom not used,1,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"0","0",no,0.353519,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,8,8 + 174 9 3,SN81FL,urban,174,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,4,"3+",6,"6+","6+",1,"1",1.0,0.0,female,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"18","15-19",18,"15-19",20,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.29448,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,71.42857142857143,1.0,11.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 174 9 12,SN81FL,urban,174,9,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","29",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.29448,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,71.42857142857143,1.0,11.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 9 16,SN81FL,urban,174,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,2.0,1.0,2.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,female,"13",More than 5 years,Yes,Yes,No,Yes,Yes,No,never,often,sometimes,"yes, but not in the last 12 months",never,never,never,never,never,never,never,never,Yes,No,,,No,No,No,No,No,Yes,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.29448,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,71.42857142857143,1.0,11.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 10 2,SN81FL,urban,174,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"0","0",yes,0.29448,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,77.77777777777779,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,1.0,1.8,"2.1-6.0",0.0,"0-7",1,26,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 174 10 2,SN8BFL,urban,174,10,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,0,"0",5,"3-5","3-5",1,"1",1.0,0.0,male,"27",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,someone else,respondent alone,husband/partner alone,"0","1-3","70","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.353519,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.6666666666666665,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,6 + 174 11 2,SN81FL,urban,174,11,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,174,kaffrine urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","55","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.29448,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,12.0,"5 and up",8.0,"5 and up",0.5555555555555556,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7142857142857144,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 174 11 2,SN8BFL,urban,174,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,0.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",8.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 174 11 3,SN81FL,urban,174,11,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,no partner,no partner,not working,not working,less than him,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,Arabic,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",not partnered,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,12.0,"5 and up",8.0,"5 and up",0.5555555555555556,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7142857142857144,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,5,6,5,5,1,2 + 174 11 9,SN81FL,urban,174,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,someone else,husband/ partner alone,someone else,"0","0","25",under 30,No,1.0,yes,no,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,12.0,"5 and up",8.0,"5 and up",0.5555555555555556,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7142857142857144,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 11 12,SN81FL,urban,174,11,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,174,kaffrine urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",7,"6+","6+",3,"2 or more",1.0,0.0,male,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","55","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",11.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.29448,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,12.0,"5 and up",8.0,"5 and up",0.5555555555555556,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7142857142857144,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 174 11 13,SN81FL,urban,174,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,respondent and husband/ partner,other,"0","0","29",under 30,No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.29448,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,12.0,"5 and up",8.0,"5 and up",0.5555555555555556,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7142857142857144,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 174 11 20,SN81FL,urban,174,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,other,other,respondent alone,other,"0","1-3","37","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.29448,1.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,12.0,"5 and up",8.0,"5 and up",0.5555555555555556,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7142857142857144,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 11 23,SN81FL,urban,174,11,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",2,"2 or more",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","60","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.29448,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,92.3076923076923,1.0,12.0,"5 and up",8.0,"5 and up",0.5555555555555556,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.7142857142857144,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 174 12 2,SN8BFL,urban,174,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","49","30-59",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,90.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",10.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 174 12 3,SN81FL,urban,174,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,7,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,someone else,respondent alone,husband/partner alone,"0","1-3","67","60+",No,0.0,no,yes,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.29448,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,65.21739130434783,1.0,9.0,"5 and up",11.0,"5 and up",1.4,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.4,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 174 12 11,SN81FL,urban,174,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,Worked in the past year,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","1-3","32","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"28","20+",28,"20+",30,"30+","25-39",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,lack of access,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.29448,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,65.21739130434783,1.0,9.0,"5 and up",11.0,"5 and up",1.4,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.4,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 174 12 13,SN81FL,urban,174,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,0.0,1.0,,1.0,"3+",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,7,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.29448,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,65.21739130434783,1.0,9.0,"5 and up",11.0,"5 and up",1.4,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.4,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,1,5,6,4,8,8 + 174 12 17,SN81FL,urban,174,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","28",under 30,No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,65.21739130434783,1.0,9.0,"5 and up",11.0,"5 and up",1.4,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,4.4,"2.1-6.0",11.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 174 13 2,SN81FL,urban,174,13,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,Yes,Yes,No,No,Yes,Yes,often,never,sometimes,"yes, but not in the last 12 months","yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","57","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"24","20+",24,"20+",26,"20-29","25-39",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.29448,0.0,,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,82.6086956521739,1.0,10.0,"5 and up",10.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,4.6,"2.1-6.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 174 13 10,SN81FL,urban,174,13,0.0,0.0,1.0,1.0,1.0,1.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",8,"6+","6+",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","53","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"18","15-19",18,"15-19",19,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.29448,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,82.6086956521739,1.0,10.0,"5 and up",10.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,4.6,"2.1-6.0",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 174 13 19,SN81FL,urban,174,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Wolof,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"0","0",no,0.29448,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,82.6086956521739,1.0,10.0,"5 and up",10.0,"5 and up",0.6666666666666666,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,4.6,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 174 14 2,SN81FL,urban,174,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","42","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.29448,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.5,"2.1-6.0",5.0,"0-7",1,30,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,2,3,2,2,8,4,10 + 174 14 2,SN8BFL,urban,174,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",7,"6+","6+",1,"1",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","49","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",9.0,"7+",1,29,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 174 15 5,SN81FL,urban,174,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,174,kaffrine urbain,1.0,"1","3+",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,5,"3+",6,"6+","6+",2,"2 or more",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,someone else,respondent alone,respondent and husband/partner,"1-3","1-3","77","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",9.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.29448,0.0,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 174 15 10,SN81FL,urban,174,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","0","39","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"0","0",yes,0.29448,0.0,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 15 15,SN81FL,urban,174,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",2,"1-2",<3,1,"1",1.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.29448,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 174 15 17,SN8BFL,urban,174,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,87.5,1.0,16.0,"5 and up",4.0,"3-4",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.4,"2.1-6.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 174 15 18,SN81FL,urban,174,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","29",under 30,No,1.0,yes,no,0.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"22","20+",22,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,80.0,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 174 15 20,SN8BFL,urban,174,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","31","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,87.5,1.0,16.0,"5 and up",4.0,"3-4",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.4,"2.1-6.0",12.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 174 16 6,SN8BFL,urban,174,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 12 months,,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,husband/partner alone,respondent alone,other,"0","1-3","15",under 30,Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"29","20+",29,"20+",33,"30+","25-39",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,76.92307692307693,1.0,8.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 174 16 10,SN8BFL,urban,174,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,jointly only,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,Arabic,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.353519,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,76.92307692307693,1.0,8.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,4,1,6,6,5 + 174 17 2,SN81FL,urban,174,17,0.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.29448,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,68.75,1.0,8.0,"5 and up",8.0,"5 and up",1.6666666666666667,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,1.0,Yes,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.666666666666667,"2.1-6.0",0.0,"0-7",,,,,,,,1,1,3,3,5,7,8,4,10 + 174 17 8,SN81FL,urban,174,17,1.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",0.0,0.0,,,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.29448,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,68.75,1.0,8.0,"5 and up",8.0,"5 and up",1.6666666666666667,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,1.0,Yes,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.666666666666667,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 17 9,SN8BFL,urban,174,17,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,other,husband/partner alone,respondent and husband/ partner,other,"0","1-3","43","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",19,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",12.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 174 17 14,SN8BFL,urban,174,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","15",under 30,No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"25","20+",25,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,83.33333333333334,1.0,9.0,"5 and up",9.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 174 18 4,SN81FL,urban,174,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",,Inconsistent or don't know,17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.29448,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",1.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 18 4,SN8BFL,urban,174,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,sales,sales,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","43","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"0","0",yes,0.353519,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",16.0,"7+",1,38,wants in 2+ years,wants after 2+ years,1.0,0.0,no,1,1,2,1,5,7,6,4,5 + 174 19 2,SN8BFL,urban,174,19,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",8,"6+","6+",1,"1",1.0,0.0,male,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","62","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"14","5-14",13,"5-14",17,<20,"15-19",10.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,don't know,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.353519,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,14.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",13.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 174 19 4,SN81FL,urban,174,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",8,"6+","6+",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","44","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"17","15-19",17,"15-19",17,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,55.55555555555556,1.0,10.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 19 12,SN8BFL,urban,174,19,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","50","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.353519,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,14.0,"5 and up",4.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 174 19 14,SN81FL,urban,174,19,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"9",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent alone,currently pregnant,respondent and husband/partner,"1-3","1-3","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Wolof,"14","5-14",14,"5-14",15,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,55.55555555555556,1.0,10.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.3333333333333335,"2.1-6.0",12.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 174 20 2,SN8BFL,urban,174,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,other,other,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.353519,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",3.0,"3-4",0.125,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"2.1-6.0",13.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,3,2,3,5,2,8,4,10 + 174 20 6,SN8BFL,urban,174,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.353519,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",3.0,"3-4",0.125,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"2.1-6.0",13.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,0.0,yes,1,2,4,5,6,3,3,1,6 + 174 21 4,SN8BFL,urban,174,21,,,,,1.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.353519,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"2.1-6.0",0.0,"0-7",,,,,,,,1,3,1,5,3,3,3,2,3 + 174 21 9,SN8BFL,urban,174,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,174,kaffrine urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","84","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,don't know,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"1","1",yes,0.353519,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.2857142857142856,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 174 22 2,SN81FL,urban,174,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent and husband/ partner,respondent and husband/partner,"1-3","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,72.22222222222221,1.0,8.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8333333333333335,"2.1-6.0",15.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 174 22 7,SN8BFL,urban,174,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"12","5-14",,Inconsistent or don't know,17,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,don't know,"2",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.353519,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",10.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 174 22 9,SN81FL,urban,174,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,Arabic,"19","15-19",19,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.29448,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,72.22222222222221,1.0,8.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8333333333333335,"2.1-6.0",15.0,"7+",1,31,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 174 22 12,SN81FL,urban,174,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,respondent and husband/ partner,someone else,"0","0","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.29448,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,72.22222222222221,1.0,8.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8333333333333335,"2.1-6.0",15.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 178 1 7,SN8BFL,urban,178,1,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,respondent and husband/partner,respondent and husband/ partner,someone else,"1-3","1-3","58","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Wolof,"23","20+",23,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,costs too much,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.265489,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,78.57142857142857,1.0,9.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.5,"2.1-6.0",9.0,"7+",,,,,,,,1,2,4,5,6,3,3,1,6 + 178 1 11,SN8BFL,urban,178,1,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.265489,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,78.57142857142857,1.0,9.0,"5 and up",5.0,"5 and up",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.5,"2.1-6.0",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 178 3 2,SN8BFL,urban,178,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,jointly only,5,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",8.0,"7+","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.265489,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,21.73913043478261,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3,"2.1-6.0",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 178 3 8,SN8BFL,urban,178,3,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,1.0,1.0,1.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.265489,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,21.73913043478261,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 178 3 14,SN8BFL,urban,178,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.265489,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,21.73913043478261,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3,"2.1-6.0",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 178 3 18,SN8BFL,urban,178,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.265489,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,21.73913043478261,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3,"2.1-6.0",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 178 5 4,SN8BFL,urban,178,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,1.0,male,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.265489,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,57.14285714285714,1.0,5.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.4,"2.1-6.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 178 7 7,SN8BFL,urban,178,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,178,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",Yes,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.265489,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,88.88888888888889,1.0,6.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 178 8 3,SN8BFL,urban,178,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","57","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.265489,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.92307692307693,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2,"2.1-6.0",19.0,"7+",2,35,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 178 8 7,SN8BFL,urban,178,8,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,178,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,alone only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","65","60+",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.265489,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.92307692307693,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2,"2.1-6.0",19.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,6 + 178 8 11,SN8BFL,urban,178,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,services,service/domestic,Family,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",30,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"0","0",no,0.265489,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.92307692307693,1.0,10.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2,"2.1-6.0",19.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 178 10 2,SN8BFL,urban,178,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,about the same,alone only,jointly only,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","48","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"34","20+",34,"20+",35,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.265489,0.0,,,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,4.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",17.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 178 11 2,SN8BFL,urban,178,11,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.265489,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,82.35294117647058,1.0,10.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.4,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 178 11 12,SN8BFL,urban,178,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,178,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","39","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.265489,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,82.35294117647058,1.0,10.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,3.4,"2.1-6.0",5.0,"0-7",,,,,,,,1,2,4,5,6,3,3,1,6 + 178 12 3,SN8BFL,urban,178,12,0.0,1.0,1.0,1.0,1.0,1.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,0.0,not partnered,not currently married,not partnered,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"3","3-5","0-4",not partnered,no,,,condom not used,0,1,no,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.265489,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,47.05882352941176,1.0,9.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,8,8 + 178 12 9,SN8BFL,urban,178,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,someone else,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Wolof,"24","20+",24,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.265489,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,47.05882352941176,1.0,9.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 178 12 16,SN8BFL,urban,178,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,alone only,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",22,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.265489,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,47.05882352941176,1.0,9.0,"5 and up",8.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",16.0,"7+",0,,never had sex,never had sex,,,no,2,2,3,4,4,4,1,6,9 + 178 13 2,SN8BFL,urban,178,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"2",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","44","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,less than once a week,1.0,"1","1",yes,0.265489,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.4,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 178 13 4,SN8BFL,urban,178,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","34","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,less than once a week,at least once a week,less than once a week,1.0,"2","1",yes,0.265489,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.4,"2.1-6.0",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 178 13 7,SN8BFL,urban,178,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.265489,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.4,"2.1-6.0",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 178 15 5,SN8BFL,urban,178,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,alone only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.265489,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,18.181818181818183,1.0,9.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5714285714285714,"2.1-6.0",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 178 16 2,SN8BFL,urban,178,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.265489,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",11.0,"7+",1,31,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 178 17 3,SN8BFL,urban,178,17,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",7,"6+","6+",0,"0",0.0,0.0,male,"31",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.265489,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",16.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 178 18 2,SN8BFL,urban,178,18,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.265489,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",9.0,"7+",1,31,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 178 21 2,SN8BFL,urban,178,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,178,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"13",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",,Inconsistent or don't know,18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.265489,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,richer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,20.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",15.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 180 1 3,SN81FL,urban,180,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,180,kaffrine urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"3","3-5","0-4",not partnered,yes,yes,,other,2,2,yes,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.298806,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",3.0,"0-7",,,,,,,,1,1,3,3,5,7,8,4,10 + 180 2 2,SN81FL,urban,180,2,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","54","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"19","15-19",19,"15-19",21,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.298806,0.0,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"2.1-6.0",5.0,"0-7",1,36,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,3,5,4,3,3,1,3 + 180 5 3,SN81FL,urban,180,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","64","60+",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",29,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.298806,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 180 5 6,SN81FL,urban,180,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.298806,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 180 5 9,SN81FL,urban,180,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.298806,1.0,0.0,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,90.9090909090909,1.0,7.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 180 7 6,SN81FL,urban,180,7,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"21","20+",21,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.298806,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,84.61538461538461,1.0,7.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 180 8 2,SN81FL,urban,180,8,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","1-3","45","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.298806,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"2.1-6.0",4.0,"0-7",1,31,unsure timing,"wants, unsure timing",1.0,1.0,yes,1,3,2,3,2,2,8,4,10 + 180 9 2,SN81FL,urban,180,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,180,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,alone only,does not own,2,"2",8,"6+","6+",2,"2 or more",1.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","0","55","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"20","20+",20,"20+",23,"20-29","20-24",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.298806,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"2.1-6.0",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 180 10 2,SN81FL,urban,180,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,180,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent alone,someone else,respondent alone,respondent and husband/ partner,someone else,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"22","20+",22,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.298806,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",5.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 180 11 3,SN81FL,urban,180,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"2",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.298806,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.3333333333333333,"2.1-6.0",5.0,"0-7",,,,,,,,1,3,2,3,5,2,8,4,10 + 180 12 2,SN81FL,urban,180,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.298806,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,72.72727272727273,1.0,7.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.8333333333333333,"2.1-6.0",9.0,"7+",1,33,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 180 13 6,SN81FL,urban,180,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"1",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.298806,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.25,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 180 14 2,SN81FL,urban,180,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,8,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.298806,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,91.30434782608695,1.0,11.0,"5 and up",9.0,"5 and up",1.6,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.875,"2.1-6.0",0.0,"0-7",1,28,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 180 14 7,SN81FL,urban,180,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,8,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","26",under 30,No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.298806,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,91.30434782608695,1.0,11.0,"5 and up",9.0,"5 and up",1.6,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.875,"2.1-6.0",0.0,"0-7",1,31,unsure timing,"wants, unsure timing",1.0,0.0,yes,1,3,2,3,2,2,8,4,10 + 180 14 14,SN81FL,urban,180,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,8,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.298806,0.0,1.0,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,91.30434782608695,1.0,11.0,"5 and up",9.0,"5 and up",1.6,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.875,"2.1-6.0",0.0,"0-7",1,,unsure timing,"wants, unsure timing",1.0,0.0,no,1,2,1,5,6,1,2,5,7 + 180 14 17,SN81FL,urban,180,14,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,2.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,180,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,8,"3+",3,"3-5","3-5",1,"1",1.0,1.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","44","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.298806,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,91.30434782608695,1.0,11.0,"5 and up",9.0,"5 and up",1.6,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.875,"2.1-6.0",0.0,"0-7",1,,unsure timing,"wants, unsure timing",1.0,0.0,no,1,2,3,5,4,3,3,1,3 + 180 14 21,SN81FL,urban,180,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,8,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","39","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.298806,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,91.30434782608695,1.0,11.0,"5 and up",9.0,"5 and up",1.6,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.875,"2.1-6.0",0.0,"0-7",1,,unsure timing,"wants, unsure timing",1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 180 15 7,SN81FL,urban,180,15,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,180,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"11","5-14",11,"5-14",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.298806,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,88.23529411764706,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.7777777777777777,"2.1-6.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 180 15 11,SN81FL,urban,180,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,husband/ partner alone,respondent and husband/partner,"1-3","1-3","48","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.298806,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,88.23529411764706,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.7777777777777777,"2.1-6.0",7.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 180 15 16,SN81FL,urban,180,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,currently pregnant,respondent and husband/partner,"1-3","1-3","36","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.298806,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,88.23529411764706,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.7777777777777777,"2.1-6.0",7.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 180 15 19,SN81FL,urban,180,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,Yes,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",not partnered,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.298806,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,88.23529411764706,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.7777777777777777,"2.1-6.0",7.0,"7+",,,,,,,,1,1,2,1,2,7,8,4,10 + 180 16 2,SN81FL,urban,180,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","33","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.298806,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",0.0,"0-7",1,33,unsure timing,"wants, unsure timing",1.0,1.0,no,1,1,2,1,2,7,6,3,5 + 180 17 7,SN81FL,urban,180,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","24",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"0","0",no,0.298806,1.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,7.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5714285714285714,"2.1-6.0",14.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 180 17 10,SN81FL,urban,180,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",2.0,"1-3","2+","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.298806,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,7.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5714285714285714,"2.1-6.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 180 18 7,SN81FL,urban,180,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,don't know,other/dk,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",18,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.298806,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",4.0,"3-4",0.4,1.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"2.1-6.0",8.0,"7+",1,33,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,2,3,4,4,4,1,6,9 + 180 20 3,SN81FL,urban,180,20,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",Yes,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",13,"5-14",16,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.298806,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 180 20 5,SN81FL,urban,180,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",not partnered,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.298806,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",2.0,"1-2",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,8,8 + 180 21 2,SN81FL,urban,180,21,1.0,,,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"19","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.298806,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"2.1-6.0",5.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 180 22 2,SN81FL,urban,180,22,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,180,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,other,other,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",3,"2 or more",1.0,0.0,male,"34",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"1-3","1-3","58","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.298806,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,7.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,5,2,8,4,10 + 181 1 5,SN8BFL,urban,181,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,not at all,at least once a week,1.0,"2","1",yes,0.377436,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,5.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"2.1-6.0",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 181 3 3,SN8BFL,urban,181,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,No,No,No,Yes,Yes,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","65","60+",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.377436,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,16.666666666666664,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",14.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 181 4 2,SN8BFL,urban,181,4,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.377436,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,richer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",9.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 181 9 2,SN8BFL,urban,181,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","41","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Arabic,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.377436,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,70.0,1.0,5.0,"5 and up",5.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"2.1-6.0",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 181 10 4,SN8BFL,urban,181,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",Yes,1.0,yes,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.377436,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,1,2,1,2,7,6,3,5 + 181 10 6,SN8BFL,urban,181,10,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,181,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.377436,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",9.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,4,1,6,6,5 + 181 13 2,SN8BFL,urban,181,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.377436,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",4.0,"0-7",,,,,,,,1,1,2,1,5,7,6,4,5 + 181 14 6,SN8BFL,urban,181,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",26,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.377436,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,5.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"2.1-6.0",12.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 181 15 3,SN8BFL,urban,181,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,181,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"14",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","70","60+",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.377436,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,10.0,1.0,3.0,"3-4",7.0,"5 and up",3.0,4.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 181 16 4,SN8BFL,urban,181,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,someone else,husband/partner alone,currently pregnant,someone else,"0","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.377436,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,5.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7142857142857142,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 181 16 7,SN8BFL,urban,181,16,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.377436,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,5.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.7142857142857142,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 181 18 2,SN8BFL,urban,181,18,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",23,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.377436,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,42.857142857142854,1.0,3.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"2.1-6.0",5.0,"0-7",1,31,wants within 2 years,wants within 2 years,0.0,0.0,no,2,2,3,4,4,4,1,6,9 + 181 19 4,SN8BFL,urban,181,19,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,181,kaffrine urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"25",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","70","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","3+",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.377436,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.25,"2.1-6.0",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 181 20 2,SN8BFL,urban,181,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,181,kaffrine urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",26,"20-29","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.377436,1.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 181 21 4,SN8BFL,urban,181,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,181,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","46","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.377436,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,owner/ co-owner,1.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",3.0,"3-4",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.4285714285714286,"2.1-6.0",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 184 1 1,SN81FL,urban,184,1,1.0,0.0,0.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.315515,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"2.1-6.0",0.0,"0-7",,,,,,,,1,1,2,1,5,7,6,4,5 + 184 2 2,SN81FL,urban,184,2,,,,,1.0,1.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,184,kaffrine urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,more than him,does not own,does not own,2,"2",7,"6+","6+",1,"1",1.0,0.0,male,"31",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",8.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.315515,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",1.0,"0-7",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 184 2 7,SN81FL,urban,184,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","60","60+",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,0.0,,,,not at all,not at all,not at all,0.0,"1","1",yes,0.315515,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.75,"2.1-6.0",1.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 184 3 4,SN81FL,urban,184,3,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,184,kaffrine urbain,1.0,"1","2",Second or more wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,0,"0",5,"3-5","3-5",0,"0",0.0,0.0,male,"33",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","71","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,don't know,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.315515,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,0.8571428571428571,"2.1-6.0",0.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 184 4 1,SN81FL,urban,184,4,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","43","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,0.0,,,,not at all,not at all,not at all,0.0,"1","1",yes,0.315515,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"2.1-6.0",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 184 5 2,SN81FL,urban,184,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","62","60+",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"2","1",yes,0.315515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",6.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",0.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 184 5 11,SN81FL,urban,184,5,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,not at all,0.0,"1","1",yes,0.315515,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",6.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"2.1-6.0",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 184 6 2,SN81FL,urban,184,6,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,0.0,,,,not at all,not at all,not at all,0.0,"1","1",yes,0.315515,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",0.0,"0-7",0,,never had sex,never had sex,,,no,1,1,2,1,5,7,6,4,5 + 184 6 7,SN81FL,urban,184,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"28",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","62","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.315515,0.0,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",0.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,1,5,6,4,8,8 + 184 6 12,SN81FL,urban,184,6,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","62","60+",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.315515,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",7.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",0.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,6 + 184 8 9,SN81FL,urban,184,8,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","68","60+",Yes,1.0,yes,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",18,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.315515,1.0,0.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,15.0,yes,Recieved support,87.5,1.0,9.0,"5 and up",7.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.875,"2.1-6.0",5.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 184 8 13,SN81FL,urban,184,8,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","32","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",0.0,0.0,,,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.315515,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,15.0,yes,Recieved support,87.5,1.0,9.0,"5 and up",7.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.875,"2.1-6.0",5.0,"0-7",1,28,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 184 10 2,SN81FL,urban,184,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","46","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"3",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.315515,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,12.0,yes,Recieved support,0.0,0.0,5.0,"5 and up",10.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"2.1-6.0",6.0,"0-7",2,32,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 184 10 6,SN81FL,urban,184,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,184,kaffrine urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,0.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,6,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","46","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Wolof,"21","20+",,Inconsistent or don't know,21,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.315515,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,12.0,yes,Recieved support,0.0,0.0,5.0,"5 and up",10.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"2.1-6.0",6.0,"0-7",2,32,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 184 10 12,SN81FL,urban,184,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.315515,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,12.0,yes,Recieved support,0.0,0.0,5.0,"5 and up",10.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.75,"2.1-6.0",6.0,"0-7",1,35,unsure timing,"wants, unsure timing",1.0,0.0,yes,1,2,1,5,6,1,2,5,7 + 184 12 8,SN81FL,urban,184,12,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent and husband/ partner,respondent alone,"0","4+","53","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,"1","1",yes,0.315515,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,65.0,1.0,10.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",3.0,"0-7",2,28,unsure timing,"wants, unsure timing",1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 184 12 14,SN81FL,urban,184,12,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","48","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.315515,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,65.0,1.0,10.0,"5 and up",10.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",3.0,"0-7",1,41,unsure timing,"wants, unsure timing",1.0,0.0,no,1,1,2,1,2,7,6,3,5 + 184 13 2,SN81FL,urban,184,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",9,"6+","6+",0,"0",0.0,0.0,male,"28",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",9.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"1","1",yes,0.315515,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,66.66666666666666,1.0,5.0,"5 and up",10.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 184 13 12,SN81FL,urban,184,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,agricultural - self employed,agricultural,Someone else,Currently working,1.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","52","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.315515,0.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,66.66666666666666,1.0,5.0,"5 and up",10.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.8,"2.1-6.0",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 184 14 2,SN81FL,urban,184,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,184,kaffrine urbain,1.0,"1","1",First wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,1.0,"1",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,6,"3+",6,"6+","6+",1,"1",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","47","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.315515,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.2,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",0.0,"0-7",2,32,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 184 14 9,SN81FL,urban,184,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,6,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","47","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",,Inconsistent or don't know,14,<20,<15,4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.315515,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.2,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",0.0,"0-7",2,32,unsure timing,"wants, unsure timing",1.0,1.0,yes,1,1,2,1,5,7,6,4,5 + 184 14 14,SN81FL,urban,184,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,1.0,1.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.315515,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.2,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"2.1-6.0",0.0,"0-7",1,32,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,1,3,4,1,7,7,3,8 + 184 15 2,SN81FL,urban,184,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,1.0,1.0,0.0,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",3,"3-5","3-5",2,"2 or more",1.0,0.0,male,"18",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Wolof,"20","20+",20,"20+",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.315515,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,1.0,0.0,,,1.0,0.0,1.0,0.0,No,1.0,urban slum,1.0,No washing station,No washing station or place observed,1.0,2.3333333333333335,"2.1-6.0",2.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 184 16 2,SN81FL,urban,184,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,184,kaffrine urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",7,"6+","6+",3,"2 or more",1.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","52","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"18","15-19",,Inconsistent or don't know,17,<20,"15-19",10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.315515,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",9.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 184 16 8,SN81FL,urban,184,16,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","52","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.315515,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",9.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 184 18 2,SN81FL,urban,184,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,9,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","48","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.315515,1.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.0,1.0,8.0,"5 and up",12.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",6.0,"0-7",2,32,unsure timing,"wants, unsure timing",1.0,1.0,no,1,1,3,3,5,7,8,4,10 + 184 18 6,SN81FL,urban,184,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,1.0,0.0,,1.0,"2",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,9,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","48","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.315515,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.0,1.0,8.0,"5 and up",12.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",6.0,"0-7",2,32,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 184 18 11,SN81FL,urban,184,18,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.315515,1.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.0,1.0,8.0,"5 and up",12.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 184 18 16,SN81FL,urban,184,18,0.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,On leave/absent,0.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,someone else,husband/partner alone,husband/ partner alone,someone else,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.315515,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,70.0,1.0,8.0,"5 and up",12.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"2.1-6.0",6.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 184 19 2,SN81FL,urban,184,19,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"4",0.0,0.0,,,,not at all,not at all,not at all,0.0,"1","1",yes,0.315515,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",8.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"2.1-6.0",6.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 184 19 10,SN81FL,urban,184,19,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"2","1",yes,0.315515,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",8.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"2.1-6.0",6.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 184 20 1,SN81FL,urban,184,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,184,kaffrine urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,skilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",6,"6+","6+",0,"0",0.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,someone else,respondent alone,respondent alone,"0","4+","61","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",23,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.315515,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,3.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"2.1-6.0",8.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 184 22 14,SN81FL,urban,184,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,184,kaffrine urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",0.0,0.0,,,,not at all,not at all,not at all,0.0,"0","0",yes,0.315515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,9.0,"5 and up",6.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"2.1-6.0",4.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 187 1 2,SN81FL,urban,187,1,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,187,kedougou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,8,"3+",8,"6+","6+",2,"2 or more",1.0,0.0,male,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","62","60+",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",,Inconsistent or don't know,22,"20-29","20-24",10.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.246433,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.28571428571428,1.0,13.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 187 1 16,SN81FL,urban,187,1,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,1.0,0.0,1.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,8,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.246433,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.28571428571428,1.0,13.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 187 1 19,SN81FL,urban,187,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,187,kedougou urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,8,"3+",5,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","58","30-59",Yes,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.246433,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.28571428571428,1.0,13.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 187 1 32,SN81FL,urban,187,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,8,"3+",3,"3-5","3-5",2,"2 or more",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,other,"18","15-19",18,"15-19",26,"20-29","25-39",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.246433,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,94.28571428571428,1.0,13.0,"5 and up",7.0,"5 and up",0.8,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 187 2 2,SN8BFL,urban,187,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.252343,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,62.5,1.0,7.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.6,"6.1-30",9.0,"7+",1,35,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 187 2 7,SN81FL,urban,187,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"1-3","1-3","36","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Mandinque,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.246433,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",8.0,"7+",1,29,unsure timing,"wants, unsure timing",1.0,0.0,yes,2,2,3,4,4,4,1,6,9 + 187 2 9,SN8BFL,urban,187,2,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,alone only,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","49","30-59",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.252343,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,62.5,1.0,7.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.6,"6.1-30",9.0,"7+",1,25,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 187 6 1,SN81FL,urban,187,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,about the same,alone only,alone only,1,"1",5,"3-5","3-5",3,"2 or more",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"1-3","1-3","53","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",8.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.246433,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"6.1-30",10.0,"7+",1,44,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 187 6 7,SN81FL,urban,187,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent and husband/partner,respondent alone,currently pregnant,respondent and husband/partner,"1-3","1-3","35","30-59",Yes,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.246433,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"6.1-30",10.0,"7+",0,23,,,,,yes,1,2,4,5,6,3,3,1,6 + 187 6 9,SN81FL,urban,187,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.246433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,80.0,1.0,5.0,"5 and up",5.0,"5 and up",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.6666666666666665,"6.1-30",10.0,"7+",0,23,,,,,yes,2,1,3,4,1,7,7,3,8 + 187 7 1,SN81FL,urban,187,7,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,alone only,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","45","30-59",Yes,1.0,no,no,0.0,,,,,,,christian,0.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,have another,,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",0.0,0.0,,,,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.246433,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 187 7 1,SN8BFL,urban,187,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,187,kedougou urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","55","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.252343,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,Recieved support,,,No support,72.0,1.0,11.0,"5 and up",9.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",13.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 187 7 3,SN8BFL,urban,187,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,2.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.252343,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,Recieved support,,,No support,72.0,1.0,11.0,"5 and up",9.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 187 7 6,SN81FL,urban,187,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","50","30-59",No,1.0,no,no,0.0,,,,,,,christian,0.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"13","5-14",13,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",0.0,0.0,,,,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.246433,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",9.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 187 7 8,SN8BFL,urban,187,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,,,"2",0.0,1.0,never circumcised,never circumcised,,less than once a week,not at all,less than once a week,1.0,"1","1",yes,0.252343,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,Recieved support,,,No support,72.0,1.0,11.0,"5 and up",9.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 187 7 14,SN8BFL,urban,187,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",18,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.252343,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,Recieved support,,,No support,72.0,1.0,11.0,"5 and up",9.0,"5 and up",0.5714285714285714,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 187 9 2,SN8BFL,urban,187,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"0",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"27","20+",19,"15-19",21,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.252343,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",18.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 187 10 2,SN8BFL,urban,187,10,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","71","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"29","20+",18,"15-19",26,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.252343,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,3.0,"3-4",0.0,"0",0.0,0.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",2.0,"0-7",0,,,,,,no,1,3,1,5,3,3,3,9,6 + 187 11 3,SN8BFL,urban,187,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,187,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,Occassional,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","71","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.252343,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.2,"6.1-30",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 187 11 5,SN81FL,urban,187,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","44","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.246433,0.0,0.0,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,66.66666666666666,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",3.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 187 12 1,SN81FL,urban,187,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,don't know,alone only,alone only,2,"2",6,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,someone else,respondent alone,husband/ partner alone,someone else,"0","1-3","50","30-59",Yes,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",8.0,"7+","2+","3+",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"2","1",yes,0.246433,0.0,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,3.0,"3-4",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"6.1-30",7.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 187 12 2,SN8BFL,urban,187,12,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.252343,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"6.1-30",5.0,"0-7",1,26,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 187 13 2,SN8BFL,urban,187,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","51","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.252343,0.0,,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,88.88888888888889,1.0,3.0,"3-4",6.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 187 13 8,SN8BFL,urban,187,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.252343,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,88.88888888888889,1.0,3.0,"3-4",6.0,"5 and up",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 187 15 2,SN81FL,urban,187,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,187,kedougou urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,don't know,does not own,does not own,5,"3+",5,"3-5","3-5",2,"2 or more",1.0,0.0,male,"29",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent and husband/partner,other,husband/partner alone,"1-3","1-3","55","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.246433,0.0,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.19047619047619,1.0,10.0,"5 and up",10.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.2,"6.1-30",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 187 15 8,SN81FL,urban,187,15,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,187,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,5,"3+",4,"3-5","3-5",1,"1",1.0,0.0,male,"12",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.246433,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,76.19047619047619,1.0,10.0,"5 and up",10.0,"5 and up",1.6666666666666667,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.2,"6.1-30",11.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 187 16 5,SN81FL,urban,187,16,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,187,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,alone only,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.246433,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,4,<6,1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",2.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 187 17 1,SN8BFL,urban,187,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","15",under 30,No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.252343,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",6.0,"5 and up",0.16666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"6.1-30",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 187 17 2,SN81FL,urban,187,17,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.246433,1.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 187 17 8,SN8BFL,urban,187,17,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,1,"1",1.0,1.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,1.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.252343,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",6.0,"5 and up",0.16666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"6.1-30",8.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 187 17 11,SN8BFL,urban,187,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,more than him,does not own,does not own,1,"1",8,"6+","6+",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","50","30-59",Yes,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",9.0,"7+","2+","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.252343,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,8.0,"5 and up",6.0,"5 and up",0.16666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.3333333333333333,"6.1-30",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 187 18 2,SN8BFL,urban,187,18,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,187,kedougou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,6,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.252343,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,35.714285714285715,1.0,13.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",13.0,"7+",2,30,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,3,2,3,2,2,8,4,10 + 187 18 6,SN8BFL,urban,187,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"1","2",Second or more wife,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","2",<3,"0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.252343,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,35.714285714285715,1.0,13.0,"5 and up",7.0,"5 and up",0.6666666666666666,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",13.0,"7+",2,30,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,2,1,5,6,1,2,5,7 + 187 19 1,SN8BFL,urban,187,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,187,kedougou urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.252343,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,66.66666666666666,1.0,3.0,"3-4",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 187 20 2,SN81FL,urban,187,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.246433,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",3.0,4.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"6.1-30",6.0,"0-7",1,38,unsure timing,"wants, unsure timing",1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 187 21 2,SN8BFL,urban,187,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,alone only,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"17",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,someone else,other,respondent and husband/partner,husband/ partner alone,other,"1-3","0","45","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.252343,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,6.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",12.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 187 22 2,SN81FL,urban,187,22,0.0,0.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.246433,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",9.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 187 22 4,SN81FL,urban,187,22,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"1","1",yes,0.246433,1.0,0.0,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 187 22 4,SN8BFL,urban,187,22,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","37","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.252343,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,44.44444444444444,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"6.1-30",8.0,"7+",1,29,wants in 2+ years,wants after 2+ years,1.0,1.0,yes,1,1,2,1,2,7,6,3,5 + 187 22 8,SN8BFL,urban,187,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.252343,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,44.44444444444444,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,2.0,"6.1-30",8.0,"7+",1,32,wants within 2 years,wants within 2 years,1.0,0.0,yes,1,1,2,1,2,7,6,3,5 + 188 3 1,SN81FL,urban,188,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,188,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,"0-11 months ago","0-11 months ago",Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,husband/partner alone,respondent and husband/partner,other,husband/partner alone,"1-3","1-3","50","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.15855,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,33.33333333333333,1.0,1.0,"0-1",2.0,"1-2",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 188 3 2,SN8BFL,urban,188,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","61","60+",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",14,"5-14",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.201659,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,Recieved support,,,No support,100.0,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"6.1-30",10.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 188 3 11,SN8BFL,urban,188,3,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","55","30-59",Yes,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.201659,1.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,Recieved support,,,No support,100.0,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"6.1-30",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 188 3 13,SN8BFL,urban,188,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.201659,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,Recieved support,,,No support,100.0,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"6.1-30",10.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 188 3 19,SN8BFL,urban,188,3,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,no,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,,"5","3-5","5+",not partnered,no,,,condom not used,1,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.201659,0.0,,,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Send International,Send funds,Recieved support,,,No support,100.0,1.0,9.0,"5 and up",11.0,"5 and up",1.25,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"6.1-30",10.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 188 4 2,SN81FL,urban,188,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,about the same,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","0","63","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",27,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.15855,0.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,0.0,0.0,3.0,"3-4",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.5,"6.1-30",5.0,"0-7",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,9,1 + 188 7 2,SN81FL,urban,188,7,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,188,kedougou urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,2,"2",8,"6+","6+",2,"2 or more",1.0,0.0,male,"28",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,respondent alone,husband/partner alone,respondent alone,respondent alone,"0","1-3","56","30-59",No,1.0,no,no,0.0,,,,,,,christian,0.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",,Inconsistent or don't know,19,<20,"15-19",11.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.15855,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.33333333333333,1.0,9.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",11.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 188 7 10,SN81FL,urban,188,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,more than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent and husband/partner,respondent alone,respondent alone,respondent and husband/partner,"1-3","4+","56","30-59",No,1.0,no,no,0.0,,,,,,,christian,0.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.15855,0.0,,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.33333333333333,1.0,9.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 188 8 2,SN81FL,urban,188,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","35","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Poular,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.15855,1.0,,,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",5.0,"0-7",1,,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 188 8 2,SN8BFL,urban,188,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",12,"5-14",17,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.201659,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",0.0,"0",0.0,0.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",0.0,"0-7",1,27,wants within 2 years,wants within 2 years,0.0,0.0,no,1,3,2,3,5,2,8,4,10 + 188 9 2,SN81FL,urban,188,9,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",6,"6+","6+",1,"1",1.0,0.0,male,"22",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,never,never,"yes, but not in the last 12 months",never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,"yes, but not in the last 12 months",never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","56","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.15855,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",7.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 188 10 7,SN8BFL,urban,188,10,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,188,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,unskilled manual,manual,,does not own,does not own,9,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","28",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.201659,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,57.692307692307686,1.0,10.0,"5 and up",10.0,"5 and up",2.25,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.125,"6.1-30",9.0,"7+",2,27,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,1,3,4,1,7,7,3,8 + 188 10 17,SN8BFL,urban,188,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,9,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,at least once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.201659,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,57.692307692307686,1.0,10.0,"5 and up",10.0,"5 and up",2.25,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.125,"6.1-30",9.0,"7+",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 188 10 20,SN8BFL,urban,188,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.201659,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,57.692307692307686,1.0,10.0,"5 and up",10.0,"5 and up",2.25,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.125,"6.1-30",9.0,"7+",1,34,wants within 2 years,wants within 2 years,0.0,0.0,no,2,2,4,2,6,5,5,7,2 + 188 11 4,SN8BFL,urban,188,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,services,service/domestic,Someone else,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,someone else,someone else,someone else,respondent alone,someone else,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Poular,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.201659,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 188 12 1,SN8BFL,urban,188,12,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,1.0,"1","3+",Second or more wife,1.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,alone only,does not own,0,"0",2,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",2.0,"1-3","2+","3+",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.201659,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",9.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 188 12 5,SN81FL,urban,188,12,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188,kedougou urbain,0.0,not partnered,not currently married,not partnered,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,no partner,no partner,not working,not working,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","3","3-5","0-4",not partnered,yes,,,other,0,1,,0.0,not married,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.15855,1.0,0.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,4.0,"3-4",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.75,"6.1-30",9.0,"7+",0,,never had sex,never had sex,,,no,1,1,2,1,2,7,8,4,10 + 188 13 13,SN8BFL,urban,188,13,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,188,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,alone only,5,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,yes,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.201659,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,86.95652173913044,1.0,10.0,"5 and up",10.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5333333333333334,"6.1-30",15.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 188 13 18,SN8BFL,urban,188,13,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","26",under 30,No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"3",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.201659,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,86.95652173913044,1.0,10.0,"5 and up",10.0,"5 and up",0.7142857142857143,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5333333333333334,"6.1-30",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 188 14 2,SN8BFL,urban,188,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"25","20+",25,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.201659,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,richer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",18.0,"7+",1,27,wants within 2 years,wants within 2 years,1.0,0.0,no,1,3,1,5,3,3,3,9,1 + 188 14 3,SN81FL,urban,188,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,2.0,2.0,2.0,2.0,2.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",29,"20-29","25-39",4.0,"4-6","2+","2",other/TBA,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.15855,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,5.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",11.0,"7+",0,,,,,,yes,1,2,1,5,6,1,2,5,7 + 188 14 7,SN81FL,urban,188,14,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",18,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.15855,1.0,0.0,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,5.0,"5 and up",6.0,"5 and up",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",11.0,"7+",0,,,,,,yes,1,1,2,1,2,7,6,3,5 + 188 15 1,SN8BFL,urban,188,15,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,female,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.201659,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,11.0,"5 and up",4.0,"3-4",0.2857142857142857,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",18.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 188 15 5,SN8BFL,urban,188,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",6,"6+","6+",2,"2 or more",1.0,0.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","55","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.201659,1.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,11.0,"5 and up",4.0,"3-4",0.2857142857142857,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",18.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 188 15 11,SN8BFL,urban,188,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","31","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.201659,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,86.66666666666667,1.0,11.0,"5 and up",4.0,"3-4",0.2857142857142857,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",18.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 188 17 2,SN8BFL,urban,188,17,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,professional/technical/managerial,,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"26",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.201659,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,Recieved support,100.0,1.0,4.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",13.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 188 18 1,SN81FL,urban,188,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,188,kedougou urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,female,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","61","60+",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",19,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"3","1",yes,0.15855,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 188 20 2,SN8BFL,urban,188,20,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,does not own,alone only,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"18","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+",,no one,TBA / no one,have another,,"5","3-5","5+",not partnered,yes,yes,,pharmacy,2,2,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.201659,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,57.14285714285714,1.0,5.0,"5 and up",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",12.0,"7+",0,,,,,,yes,1,3,2,3,2,2,8,4,4 + 188 20 5,SN81FL,urban,188,20,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,188,kedougou urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","52","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",13,"5-14",20,"20-29","20-24",1.0,"1-3","1","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.15855,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,owner/ co-owner,0.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",6.0,"0-7",2,36,unsure timing,"wants, unsure timing",1.0,1.0,yes,1,3,1,5,3,3,3,2,3 + 188 21 2,SN81FL,urban,188,21,0.0,0.0,0.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,188,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,sometimes,sometimes,often,often,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.15855,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,10.0,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",1.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 189 1 10,SN81FL,urban,189,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","0","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.142695,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,87.5,1.0,12.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",12.0,"7+",,,,,,,,1,1,2,1,5,7,6,4,5 + 189 2 2,SN81FL,urban,189,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","33","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"5",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.142695,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,1.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",10.0,"7+",1,37,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 189 2 3,SN8BFL,urban,189,2,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","57","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.161976,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",12.0,"7+",1,25,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,1,3,3,5,7,8,4,10 + 189 2 8,SN8BFL,urban,189,2,1.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.161976,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",12.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,1,5,6,4,8,8 + 189 3 6,SN8BFL,urban,189,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,6,"3+",3,"3-5","3-5",0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,husband/ partner alone,someone else,"0","0","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"19","15-19",19,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.161976,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,64.70588235294117,1.0,9.0,"5 and up",8.0,"5 and up",1.2,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4285714285714284,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 189 3 13,SN8BFL,urban,189,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,6,"3+",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,don't know,don't know,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.161976,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,64.70588235294117,1.0,9.0,"5 and up",8.0,"5 and up",1.2,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.4285714285714284,"6.1-30",12.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 189 4 2,SN81FL,urban,189,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,189,kedougou urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",5,"3-5","3-5",1,"1",1.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.142695,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",0.0,"0-7",2,25,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 189 4 2,SN8BFL,urban,189,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,2.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","54","30-59",No,1.0,yes,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.161976,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,12.5,1.0,3.0,"3-4",5.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,8.0,"6.1-30",9.0,"7+",1,41,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,4,1,6,6,5 + 189 5 2,SN81FL,urban,189,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,Yes,Yes,No,Yes,Yes,No,sometimes,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"2","1",yes,0.142695,0.0,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,6.0,1.0,0.0,0.0,1.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.3333333333333335,"6.1-30",7.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 189 6 1,SN8BFL,urban,189,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,189,kedougou urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,alone only,0,"0",5,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","50","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.161976,1.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",0.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 189 7 2,SN81FL,urban,189,7,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",1,"1",1.0,0.0,male,"14",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,Yes,No,,,No,No,Yes,No,No,No,No,No,No,,respondent alone,husband/partner alone,husband/partner alone,someone else,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.142695,1.0,0.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,60.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,1.0,1.0,1.0,,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"6.1-30",0.0,"0-7",,,,,,,,1,2,4,5,6,3,3,1,6 + 189 7 4,SN8BFL,urban,189,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,189,kedougou urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",6,"6+","6+",2,"2 or more",1.0,0.0,male,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,meno/infecund/ hysterectomy,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.161976,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,60.0,1.0,5.0,"5 and up",5.0,"5 and up",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"6.1-30",16.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 189 8 2,SN81FL,urban,189,8,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,not at all,1.0,"1","1",yes,0.142695,0.0,0.0,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",4.0,"0-7",1,26,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 189 8 4,SN8BFL,urban,189,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","39","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.161976,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,9.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",13.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,1,1,7,7,8,8 + 189 8 9,SN8BFL,urban,189,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",25,"20+",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.161976,0.0,0.0,,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,71.42857142857143,1.0,9.0,"5 and up",5.0,"5 and up",0.75,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,1.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 189 9 1,SN8BFL,urban,189,9,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",13,"5-14",19,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,"1-2 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,don't know,"3",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.161976,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 189 9 2,SN81FL,urban,189,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",14,<20,<15,4.0,"4-6","2+","3+",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.142695,1.0,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,80.0,1.0,4.0,"3-4",1.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",0.0,"0-7",,,,,,,,1,1,2,1,5,7,6,4,5 + 189 10 2,SN81FL,urban,189,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Poular,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.142695,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,40.0,1.0,3.0,"3-4",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,10.0,"6.1-30",6.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 189 11 2,SN81FL,urban,189,11,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","47","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.142695,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.66666666666666,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 189 11 2,SN8BFL,urban,189,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,alone only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.161976,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 189 11 8,SN81FL,urban,189,11,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,household and domestic,service/domestic,less than him,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,Yes,Yes,No,Yes,Yes,Yes,sometimes,sometimes,sometimes,never,"yes, but not in the last 12 months","yes, but not in the last 12 months",never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"3",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.142695,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.66666666666666,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 189 13 2,SN8BFL,urban,189,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,yes,no,1.0,"no, child wasn't treated",1.0,0.0,1.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","3","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.161976,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 189 16 1,SN8BFL,urban,189,16,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,189,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,alone only,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","51","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,higher,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"20","20+",22,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.161976,1.0,,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,richest,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",0.0,"0",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"6.1-30",13.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 189 17 6,SN8BFL,urban,189,17,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","38","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"29","20+",29,"20+",30,"30+","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"2","1",yes,0.161976,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,richest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,42.857142857142854,1.0,3.0,"3-4",4.0,"3-4",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.75,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 189 18 1,SN8BFL,urban,189,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Someone else,On leave/absent,0.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",4.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.161976,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 189 18 2,SN81FL,urban,189,18,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,189,kedougou urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",17,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.142695,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",6.0,"0-7",2,31,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,5,2,8,4,10 + 189 18 5,SN81FL,urban,189,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.142695,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.25,"6.1-30",6.0,"0-7",2,31,unsure timing,"wants, unsure timing",1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 189 21 1,SN8BFL,urban,189,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",3,"3-5","3-5",1,"1",1.0,1.0,female,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,at least once a week,1.0,"1","1",yes,0.161976,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 189 22 2,SN81FL,urban,189,22,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,0.0,189,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","42","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",5.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,"1","1",yes,0.142695,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",10.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 189 22 2,SN8BFL,urban,189,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,189,kedougou urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 12 months,,sales,sales,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"14","5-14",14,"5-14",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.161976,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",5.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 195 3 2,SN8BFL,urban,195,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,195,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.121545,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"6.1-30",2.0,"0-7",,,,,,,,1,1,2,1,5,7,6,4,5 + 195 4 2,SN8BFL,urban,195,4,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,195,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","43","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,undecided,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.121545,0.0,,,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.4,"6.1-30",9.0,"7+",1,29,wants in 2+ years,wants after 2+ years,0.0,0.0,no,1,3,1,5,3,3,3,2,3 + 195 5 2,SN8BFL,urban,195,5,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,195,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"1",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.121545,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,50.0,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 195 6 2,SN8BFL,urban,195,6,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,195,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,1.0,1.0,0.0,,0.0,"2",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,0,"0",3,"3-5","3-5",1,"1",1.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,,,,,,,christian,0.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"24","20+",18,"15-19",23,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,no child <5,no child <5,no child <5,0.121545,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,5.0,"6.1-30",8.0,"7+",1,33,wants no more,wants no more,0.0,0.0,no,1,3,1,5,3,3,3,2,3 + 195 7 2,SN8BFL,urban,195,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,195,kedougou urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"1",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.121545,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,75.0,1.0,5.0,"5 and up",3.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",8.0,"7+",,,,,,,,1,1,2,1,5,7,6,4,5 + 195 8 2,SN8BFL,urban,195,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,195,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,not at all,1.0,"1","1",yes,0.121545,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,85.71428571428571,1.0,4.0,"3-4",3.0,"3-4",0.3333333333333333,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",12.0,"7+",1,25,wants within 2 years,wants within 2 years,0.0,0.0,no,1,2,1,5,4,1,6,6,5 + 195 14 2,SN8BFL,urban,195,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,195,kedougou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,1.0,1.0,0.0,,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.121545,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.625,"6.1-30",11.0,"7+",2,33,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 195 14 5,SN8BFL,urban,195,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,195,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,1.0,1.0,0.0,,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",20,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,at least once a week,not at all,less than once a week,1.0,"1","1",yes,0.121545,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",5.0,"5 and up",0.6666666666666666,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.625,"6.1-30",11.0,"7+",2,33,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 195 15 2,SN8BFL,urban,195,15,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,195,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",8,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",,Inconsistent or don't know,16,<20,"15-19",8.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.121545,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 195 18 2,SN8BFL,urban,195,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,195,kedougou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,2,"2",6,"6+","6+",1,"1",1.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.121545,0.0,,,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,77.77777777777779,1.0,5.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.8,"6.1-30",8.0,"7+",2,23,wants within 2 years,wants within 2 years,0.0,0.0,no,1,1,2,1,2,7,6,3,5 + 195 19 2,SN8BFL,urban,195,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,195,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.121545,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,57.14285714285714,1.0,5.0,"5 and up",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",12.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 195 20 2,SN8BFL,urban,195,20,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,195,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","48","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.121545,1.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",13.0,"7+",1,36,wants in 2+ years,wants after 2+ years,0.0,0.0,no,2,2,3,4,4,4,1,6,9 + 195 20 6,SN8BFL,urban,195,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,195,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.121545,0.0,,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",13.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 195 22 6,SN8BFL,urban,195,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,1.0,0.0,2.0,2.0,2.0,2.0,2.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,195,kedougou urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"3","1",yes,0.121545,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,55.55555555555556,1.0,5.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.6666666666666667,"6.1-30",8.0,"7+",0,,,,,,no,2,2,3,4,4,4,1,6,9 + 196 1 7,SN81FL,urban,196,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,professional/technical/managerial,,less than him,does not own,does not own,7,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","42","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.144421,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,39.285714285714285,1.0,13.0,"5 and up",7.0,"5 and up",0.875,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.9285714285714286,"6.1-30",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 196 1 12,SN81FL,urban,196,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,professional/technical/managerial,,,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",Yes,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",23,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.144421,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,39.285714285714285,1.0,13.0,"5 and up",7.0,"5 and up",0.875,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.9285714285714286,"6.1-30",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 196 1 16,SN81FL,urban,196,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.144421,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,39.285714285714285,1.0,13.0,"5 and up",7.0,"5 and up",0.875,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.9285714285714286,"6.1-30",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 196 1 21,SN81FL,urban,196,1,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,7,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","32","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.144421,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,39.285714285714285,1.0,13.0,"5 and up",7.0,"5 and up",0.875,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.9285714285714286,"6.1-30",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 196 7 2,SN81FL,urban,196,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,196,kedougou urbain,1.0,"1","1",First wife,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"32",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"1-3","1-3","57","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"11","5-14",11,"5-14",17,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",0.0,0.0,,,,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.144421,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,89.28571428571429,1.0,10.0,"5 and up",10.0,"5 and up",0.2727272727272727,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,1.0,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5454545454545454,"6.1-30",11.0,"7+",,,,,,,,1,3,2,3,5,2,8,4,10 + 196 7 7,SN81FL,urban,196,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,196,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,don't know,other/dk,less than him,does not own,does not own,3,"3+",0,"0",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"1-3","0","57","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"19","15-19",19,"15-19",33,"30+","25-39",1.0,"1-3","1","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.144421,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,89.28571428571429,1.0,10.0,"5 and up",10.0,"5 and up",0.2727272727272727,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,1.0,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5454545454545454,"6.1-30",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 196 7 16,SN81FL,urban,196,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,sales,sales,more than him,does not own,alone only,3,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent alone,husband/partner alone,someone else,respondent and husband/ partner,husband/partner alone,"1-3","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.144421,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,89.28571428571429,1.0,10.0,"5 and up",10.0,"5 and up",0.2727272727272727,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,1.0,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5454545454545454,"6.1-30",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 196 7 26,SN81FL,urban,196,7,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,196,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",2,"1-2",<3,1,"1",1.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.144421,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,89.28571428571429,1.0,10.0,"5 and up",10.0,"5 and up",0.2727272727272727,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,11,"6+",0.0,1.0,1.0,,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5454545454545454,"6.1-30",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 196 9 8,SN81FL,urban,196,9,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,196,kedougou urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,services,service/domestic,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,No,Yes,No,Yes,No,No,sometimes,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","0","50","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.144421,1.0,,,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,91.66666666666666,1.0,8.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.7142857142857142,"6.1-30",7.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 196 10 11,SN81FL,urban,196,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","35","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.144421,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,9.0,"5 and up",6.0,"5 and up",0.75,1.0,No food cooked in house,Other,,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",6.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 196 11 2,SN81FL,urban,196,11,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,4,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,Yes,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","41","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,undecided,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,,not at all,not at all,not at all,0.0,"2","1",yes,0.144421,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 196 11 9,SN81FL,urban,196,11,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","41","30-59",Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",0.0,0.0,,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.144421,1.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,75.0,1.0,4.0,"3-4",8.0,"5 and up",1.3333333333333333,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 196 12 2,SN81FL,urban,196,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,don't know,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"1-3","1-3","60","60+",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.144421,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,87.5,1.0,5.0,"5 and up",3.0,"3-4",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.75,"6.1-30",11.0,"7+",0,,never had sex,never had sex,,,yes,2,1,3,4,1,7,7,3,8 + 196 13 3,SN81FL,urban,196,13,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.144421,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,68.75,1.0,9.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 196 13 8,SN81FL,urban,196,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,female,"9",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,husband/partner alone,respondent alone,respondent and husband/partner,"1-3","1-3","43","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.144421,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,68.75,1.0,9.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"6.1-30",12.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 196 13 15,SN81FL,urban,196,13,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,1.0,196,kedougou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","37","30-59",No,0.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"20","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.144421,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,68.75,1.0,9.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.6,"6.1-30",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 196 14 3,SN81FL,urban,196,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,196,kedougou urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","56","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.144421,0.0,,,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.5,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",6.0,"0-7",3,30,unsure timing,"wants, unsure timing",1.0,1.0,yes,2,2,3,4,4,4,1,6,9 + 196 16 2,SN81FL,urban,196,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.144421,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",7.0,"7+",1,21,unsure timing,"wants, unsure timing",1.0,1.0,yes,1,1,2,1,2,7,6,3,5 + 196 17 2,SN81FL,urban,196,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,alone only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.144421,0.0,,,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,richest,housed by employer/ family/ friend,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,20.0,1.0,3.0,"3-4",2.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",21.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 196 19 3,SN81FL,urban,196,19,0.0,0.0,0.0,0.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","24",under 30,No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,don't know,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.144421,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,No food cooked in house,Other,,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",4.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 196 20 2,SN81FL,urban,196,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","35","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"27","20+",27,"20+",28,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.144421,0.0,0.0,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,middle,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",13.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 196 22 2,SN81FL,urban,196,22,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,196,kedougou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",no one,TBA / no one,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.144421,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,1.0,3.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",4.0,"0-7",1,31,unsure timing,"wants, unsure timing",1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 201 1 4,SN81FL,urban,201,1,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,10,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,other,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","33","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,yes,,,relatives/friends,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"3","1",yes,0.298142,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.1111111111111112,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 201 1 9,SN81FL,urban,201,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,201,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,10,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","33","30-59",Yes,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"21","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.298142,1.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.1111111111111112,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 201 1 15,SN81FL,urban,201,1,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,jointly only,jointly only,10,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,Arabic,"31","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,,More than 6,"6+","5+",not partnered,no,,,condom not used,1,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,not at all,less than once a week,1.0,"0","0",yes,0.298142,1.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.1111111111111112,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",9.0,"7+",,,,,,,,2,2,4,5,6,5,5,1,2 + 201 1 17,SN81FL,urban,201,1,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,2.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,10,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","71","60+",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",doctor/nurse,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.298142,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.1111111111111112,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 201 1 22,SN81FL,urban,201,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,10,"3+",3,"3-5","3-5",1,"1",1.0,1.0,male,"13",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,husband/partner alone,other,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"1-3","0","40","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.298142,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.1111111111111112,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",9.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 201 1 26,SN81FL,urban,201,1,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,about the same,jointly only,does not own,10,"3+",2,"1-2",<3,2,"2 or more",1.0,0.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,other,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","33","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,1.0,0.0,1.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.298142,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.1111111111111112,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",9.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 201 1 30,SN81FL,urban,201,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,10,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,other,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","33","30-59",Yes,0.0,no,no,0.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",18,"15-19",24,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"0","0",yes,0.298142,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.1111111111111112,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,14,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 201 2 2,SN81FL,urban,201,2,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,alone only,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","34","30-59",No,1.0,yes,yes,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"20","20+",19,"15-19",23,"20-29","20-24",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.298142,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"6.1-30",12.0,"7+",1,35,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 201 2 2,SN8BFL,urban,201,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","45","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",22,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"2","1",yes,0.432253,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"6.1-30",0.0,"0-7",1,37,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,2,1,5,4,1,6,6,5 + 201 2 5,SN81FL,urban,201,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,jointly only,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","27",under 30,No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Mandinque,"16","15-19",16,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.298142,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.25,"6.1-30",12.0,"7+",1,27,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 201 3 3,SN8BFL,urban,201,3,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","41","30-59",No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.432253,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.857142857142857,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 201 3 8,SN8BFL,urban,201,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","39","30-59",No,1.0,no,no,1.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"26","20+",15,"15-19",17,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"2","1",yes,0.432253,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.857142857142857,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 201 3 13,SN8BFL,urban,201,3,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,Yes,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","34","30-59",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.432253,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.857142857142857,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 201 4 1,SN81FL,urban,201,4,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,skilled manual,manual,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,yes,1.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","4","3-5","0-4",both want same,yes,,,relatives/friends,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.298142,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send International,Send funds,Send International,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,1.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",8.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 201 4 4,SN8BFL,urban,201,4,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","36","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,at least once a week,1.0,"1","1",yes,0.432253,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"6.1-30",11.0,"7+",1,28,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,2,4,2,6,5,5,7,2 + 201 5 2,SN81FL,urban,201,5,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,201,sedhiou urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,3,"3+",4,"3-5","3-5",1,"1",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","37","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.298142,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 201 5 2,SN8BFL,urban,201,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","49","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",17,"15-19",18,<20,"15-19",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.432253,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 201 5 7,SN81FL,urban,201,5,1.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,201,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,3,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","37","30-59",Yes,1.0,no,no,0.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,"1","1",yes,0.298142,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",7.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,6.0,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 201 6 12,SN81FL,urban,201,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,more than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,female,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","33","30-59",No,1.0,yes,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",21,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.298142,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,8.0,"5 and up",8.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.2857142857142856,"6.1-30",12.0,"7+",0,,,,,,no,2,2,4,2,6,5,5,7,2 + 201 7 7,SN81FL,urban,201,7,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,skilled manual,manual,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,skilled manual,manual,,jointly only,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.298142,1.0,,,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.1666666666666667,"6.1-30",9.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 201 8 1,SN8BFL,urban,201,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",16,"15-19",20,"20-29","20-24",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.432253,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",2.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 201 9 2,SN81FL,urban,201,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,3,"3+",2,"1-2",<3,2,"2 or more",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","1-3","43","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,1.0,1.0,christian,0.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"24","20+",14,"5-14",18,<20,"15-19",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.298142,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",3.0,"3-4",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"6.1-30",16.0,"7+",,,,,,,,2,1,3,1,1,6,4,8,8 + 201 9 9,SN81FL,urban,201,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,yes,1.0,"no, child wasn't treated",,,,,,christian,0.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",29,"20-29","25-39",1.0,"1-3","1","1",doctor/nurse,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants fewer,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.298142,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",3.0,"3-4",0.6,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.8333333333333333,"6.1-30",16.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 201 10 9,SN81FL,urban,201,10,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,0,"0",2,"1-2",<3,1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","27",under 30,Yes,1.0,no,no,0.0,,,,,,,christian,0.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"29","20+",15,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"0","0",yes,0.298142,1.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",10.0,"7+",1,,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 201 11 1,SN8BFL,urban,201,11,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,201,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,about the same,both alone and jointly,does not own,0,"0",4,"3-5","3-5",1,"1",1.0,0.0,female,,No longer with first partner,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","50","30-59",Yes,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",15,<20,"15-19",5.0,"4-6","2+","2",no one,TBA / no one,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.432253,0.0,,,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,3.0,"3-4",0.0,"0",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 201 12 3,SN8BFL,urban,201,12,,,,,0.0,1.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,0,"0",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","32","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"22","20+",16,"15-19",17,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.432253,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,50.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",7.0,"7+",1,,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,2,3,2,2,8,4,10 + 201 12 5,SN81FL,urban,201,12,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,201,sedhiou urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,skilled manual,manual,Self,Worked in the past year,0.0,Occassional,no partner,no partner,not working,not working,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,"yes, child was treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,not partnered,not partnered,,,'No' to asked languages,"27","20+",14,"5-14",26,"20-29","25-39",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,,"6","6+","5+",not partnered,yes,,,pharmacy,1,1,,,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.298142,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,12.0,"5 and up",2.0,"1-2",0.4,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.7142857142857142,"6.1-30",13.0,"7+",1,28,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,4,5,6,5,5,1,2 + 201 13 2,SN8BFL,urban,201,13,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"23",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","53","30-59",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",6.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.432253,0.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 201 14 2,SN8BFL,urban,201,14,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",No,1.0,no,yes,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.432253,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6,"6.1-30",10.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 201 14 4,SN8BFL,urban,201,14,,,,,1.0,1.0,,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,201,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,1.0,0.0,1.0,"2",0.0,No HW visit,services,service/domestic,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,husband/partner alone,respondent and husband/partner,respondent alone,husband/partner alone,"1-3","1-3","52","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"25","20+",18,"15-19",18,<20,"15-19",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.432253,0.0,,,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.6,"6.1-30",10.0,"7+",0,,,,,,yes,1,3,2,3,2,2,8,4,10 + 201 16 2,SN8BFL,urban,201,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,0,"0",2,"1-2",<3,0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.432253,0.0,,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",13.0,"7+",1,34,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,3,1,5,3,3,3,9,1 + 201 17 2,SN81FL,urban,201,17,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,husband/ partner alone,respondent and husband/partner,"4+","0","53","30-59",No,1.0,no,yes,1.0,,,,,,,christian,0.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.298142,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",8.0,"5 and up",0.5,1.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",12.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,10 + 201 17 2,SN8BFL,urban,201,17,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"16",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",16,"15-19",16,<20,"15-19",7.0,"7+","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.432253,0.0,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.4,"6.1-30",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 201 18 1,SN8BFL,urban,201,18,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,201,sedhiou urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"26",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",17,"15-19",23,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,don't know,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.432253,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,33.33333333333333,1.0,4.0,"3-4",2.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.2,"6.1-30",10.0,"7+",0,,never had sex,never had sex,,,yes,1,3,1,5,3,3,3,2,3 + 201 18 7,SN81FL,urban,201,18,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,1.0,1.0,,201,sedhiou urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,4,"3+",3,"3-5","3-5",1,"1",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"13","5-14",13,"5-14",25,"20-29","25-39",4.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.298142,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1,"6.1-30",16.0,"7+",4,23,wants no more,wants no more,,1.0,no,1,3,1,5,3,3,3,9,6 + 201 18 11,SN81FL,urban,201,18,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,4,"3+",5,"3-5","3-5",0,"0",0.0,1.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"2","1",yes,0.298142,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,76.19047619047619,1.0,8.0,"5 and up",12.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1,"6.1-30",16.0,"7+",4,23,wants no more,wants no more,,1.0,no,2,1,3,4,1,7,7,3,8 + 201 19 5,SN8BFL,urban,201,19,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,201,sedhiou urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","65","60+",No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"28","20+",16,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.432253,0.0,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4,"6.1-30",12.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 201 22 2,SN81FL,urban,201,22,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","60","60+",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"1","1",yes,0.298142,1.0,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",2.0,"0-7",1,36,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 201 22 2,SN8BFL,urban,201,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,201,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","0","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.432253,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,20.0,1.0,2.0,"2",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",14.0,"7+",1,28,wants within 2 years,wants within 2 years,,1.0,yes,2,1,3,4,1,7,7,3,8 + 202 1 2,SN81FL,urban,202,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,202,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,1,"1",2,"1-2",<3,1,"1",1.0,1.0,female,"7",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","45","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Mandinque,"39","20+",20,"20+",24,"20-29","20-24",3.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,7.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,1.0,1.6,"6.1-30",12.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 202 1 7,SN8BFL,urban,202,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,other,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","40","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"12","5-14",13,"5-14",14,<20,<15,4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.244107,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",7.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 202 2 2,SN81FL,urban,202,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","32","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",11.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 202 2 2,SN8BFL,urban,202,2,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,unskilled manual,manual,Self,Worked in the past year,0.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,other,respondent and husband/partner,respondent and husband/ partner,other,"1-3","1-3","38","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"16","15-19",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","3+",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.244107,1.0,,,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,1.4285714285714286,"6.1-30",7.0,"7+",1,31,unsure timing,"wants, unsure timing",0.0,0.0,no,1,1,2,1,5,7,6,4,5 + 202 3 1,SN8BFL,urban,202,3,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,0.0,,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,clerical,professional/mangerial/ clerical,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,more than him,jointly only,alone only,0,"0",3,"3-5","3-5",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,other,respondent alone,respondent alone,other,"0","4+","50","30-59",Yes,1.0,yes,yes,0.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,don't know,don't know,,,'No' to asked languages,"24","20+",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,no child <5,no child <5,no child <5,0.244107,0.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,87.5,1.0,6.0,"5 and up",2.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,1 + 202 4 7,SN81FL,urban,202,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","38","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"18","15-19",18,"15-19",27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,50.0,1.0,7.0,"5 and up",5.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,1.0,1.3333333333333333,"6.1-30",14.0,"7+",1,30,wants in 2+ years,wants after 2+ years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 202 5 2,SN81FL,urban,202,5,,,,,0.0,0.0,,0.0,1.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,professional/technical/managerial,,Someone else,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,jointly only,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","55","30-59",No,0.0,no,yes,0.0,,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"29","20+",25,"20+",29,"20-29","25-39",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.329554,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",11.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 202 5 2,SN8BFL,urban,202,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,10,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"21",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,Mandinque,"17","15-19",17,"15-19",17,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.244107,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,65.71428571428571,1.0,6.0,"5 and up",14.0,"5 and up",1.4285714285714286,2.0,Other,Other,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8333333333333335,"6.1-30",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 202 5 9,SN8BFL,urban,202,5,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,10,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"17","15-19",,Inconsistent or don't know,17,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.244107,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,65.71428571428571,1.0,6.0,"5 and up",14.0,"5 and up",1.4285714285714286,2.0,Other,Other,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8333333333333335,"6.1-30",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 202 5 13,SN8BFL,urban,202,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,10,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"30","20+",,Inconsistent or don't know,27,"20-29","25-39",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.244107,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,65.71428571428571,1.0,6.0,"5 and up",14.0,"5 and up",1.4285714285714286,2.0,Other,Other,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8333333333333335,"6.1-30",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 202 5 16,SN8BFL,urban,202,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,10,"3+",4,"3-5","3-5",0,"0",0.0,1.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.244107,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,65.71428571428571,1.0,6.0,"5 and up",14.0,"5 and up",1.4285714285714286,2.0,Other,Other,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8333333333333335,"6.1-30",15.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 202 5 21,SN8BFL,urban,202,5,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,10,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"2","1",yes,0.244107,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,65.71428571428571,1.0,6.0,"5 and up",14.0,"5 and up",1.4285714285714286,2.0,Other,Other,0.0,0.0,12,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.8333333333333335,"6.1-30",15.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 202 6 1,SN8BFL,urban,202,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",23,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.244107,0.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 202 7 2,SN81FL,urban,202,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","48","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.329554,0.0,,,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",6.0,"5 and up",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"6.1-30",4.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 202 7 2,SN8BFL,urban,202,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Mandinque,"15","15-19",15,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.244107,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,92.3076923076923,1.0,8.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1666666666666665,"6.1-30",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 202 8 1,SN81FL,urban,202,8,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,services,service/domestic,less than him,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.329554,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,middle,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",0.5,1.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",8.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 202 8 2,SN8BFL,urban,202,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"27","20+",14,"5-14",16,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,not at all,1.0,"1","1",yes,0.244107,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send International,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,1.0,0.0,,,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,5.0,"6.1-30",3.0,"0-7",2,27,wants within 2 years,wants within 2 years,0.0,0.0,no,2,1,3,1,5,6,4,8,8 + 202 9 2,SN8BFL,urban,202,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,2,"2",5,"3-5","3-5",1,"1",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","52","30-59",No,1.0,no,yes,1.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,Mandinque,"14","5-14",14,"5-14",17,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"5",1.0,1.0,no,no,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.244107,1.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,14.0,"5 and up",6.0,"5 and up",0.2857142857142857,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.2666666666666666,"6.1-30",13.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 202 9 3,SN81FL,urban,202,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"1","1",First wife,0.0,Partner opposes,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,1.0,male,"16",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",15,"15-19",22,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"2","1",yes,0.329554,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,5.0,"5 and up",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,1.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",9.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 202 9 10,SN8BFL,urban,202,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,clerical,professional/mangerial/ clerical,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","28",under 30,No,1.0,yes,no,1.0,"no, child wasn't treated",0.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"22","20+",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.244107,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,14.0,"5 and up",6.0,"5 and up",0.2857142857142857,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.2666666666666666,"6.1-30",13.0,"7+",,,,,,,,1,2,4,5,4,3,3,1,3 + 202 9 13,SN8BFL,urban,202,9,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","36","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,don't know,don't know,don't know,not at all,not at all,less than once a week,1.0,"1","1",yes,0.244107,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,63.63636363636363,1.0,14.0,"5 and up",6.0,"5 and up",0.2857142857142857,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.2666666666666666,"6.1-30",13.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 202 11 2,SN81FL,urban,202,11,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,Yes,No,No,Yes,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","33","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.329554,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,7.0,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 202 13 2,SN81FL,urban,202,13,1.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","46","30-59",Yes,1.0,no,yes,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,no,no,no,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.329554,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,57.14285714285714,1.0,2.0,"2",5.0,"5 and up",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,7.0,"6.1-30",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 202 14 3,SN81FL,urban,202,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,jointly only,does not own,1,"1",2,"1-2",<3,2,"2 or more",1.0,0.0,female,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","36","30-59",No,1.0,yes,yes,1.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,0.0,,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,63.63636363636363,1.0,7.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.5714285714285714,"6.1-30",13.0,"7+",1,30,wants within 2 years,wants within 2 years,1.0,0.0,no,2,1,3,4,1,7,7,3,8 + 202 15 1,SN81FL,urban,202,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,does not own,4,"3+",8,"6+","6+",0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"24","20+",15,"15-19",23,"20-29","20-24",8.0,"7+","2+","3+",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,75.0,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4,"6.1-30",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 202 15 3,SN8BFL,urban,202,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,On leave/absent,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,3,"3+",3,"3-5","3-5",0,"0",0.0,1.0,male,"7",More than 5 years,No,No,No,Yes,Yes,Yes,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","35","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Diola,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.244107,1.0,0.0,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,37.5,1.0,4.0,"3-4",4.0,"3-4",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,2.6666666666666665,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 202 15 6,SN81FL,urban,202,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","30","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,1.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,not at all,at least once a week,1.0,"1","1",yes,0.329554,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,75.0,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4,"6.1-30",9.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 202 15 10,SN81FL,urban,202,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,4,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","36","30-59",No,1.0,no,no,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"22","20+",22,"20+",23,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,75.0,1.0,6.0,"5 and up",6.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4,"6.1-30",9.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 202 16 5,SN8BFL,urban,202,16,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"0",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"1-3","0","35","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"24","20+",13,"5-14",17,<20,"15-19",2.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.244107,0.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"6.1-30",9.0,"7+",0,33,,,,,no,2,1,3,1,1,6,4,8,8 + 202 19 2,SN81FL,urban,202,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,No,No,No,No,No,No,No,No,No,yes,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","34","30-59",No,1.0,yes,no,1.0,"yes, child was treated",0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"27","20+",27,"20+",31,"30+","25-39",1.0,"1-3","1","1",other/TBA,TBA / no one,have another,<12 months,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,poorer,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",1.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 202 19 2,SN8BFL,urban,202,19,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.244107,0.0,0.0,,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,93.75,1.0,9.0,"5 and up",7.0,"5 and up",0.4,1.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,4,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",16.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 202 20 3,SN8BFL,urban,202,20,,,,,0.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,202,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,1,"1",4,"3-5","3-5",2,"2 or more",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,respondent and husband/partner,currently pregnant,other,"1-3","1-3","56","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",7.0,"7+","2+","3+",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.244107,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,6.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",5.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 202 20 5,SN8BFL,urban,202,20,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,1.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,1.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,no,yes,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.244107,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,85.71428571428571,1.0,6.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",5.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 202 21 4,SN81FL,urban,202,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Family,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","49","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,10.0,"5 and up",10.0,"5 and up",1.2857142857142858,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1333333333333333,"6.1-30",17.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 202 21 9,SN81FL,urban,202,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","33","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Mandinque,"18","15-19",18,"15-19",23,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"3","3-5","0-4",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,10.0,"5 and up",10.0,"5 and up",1.2857142857142858,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1333333333333333,"6.1-30",17.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 202 21 14,SN81FL,urban,202,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,not working,not working,,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","43","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"15","15-19",15,"15-19",16,<20,"15-19",3.0,"1-3","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,,,"0",0.0,1.0,never circumcised,never circumcised,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,10.0,"5 and up",10.0,"5 and up",1.2857142857142858,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1333333333333333,"6.1-30",17.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 202 21 18,SN81FL,urban,202,21,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,not working,not working,,does not own,does not own,9,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","95","60+",Yes,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",8,"5-14",24,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,1.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,10.0,"5 and up",10.0,"5 and up",1.2857142857142858,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1333333333333333,"6.1-30",17.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 202 21 21,SN81FL,urban,202,21,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,jointly only,9,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"13",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","33","30-59",No,1.0,no,yes,1.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,higher,yes,education,higher education,'No' to asked languages,"18","15-19",8,"5-14",21,"20-29","20-24",4.0,"4-6","2+",,other/TBA,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"2",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.329554,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,10.0,"5 and up",10.0,"5 and up",1.2857142857142858,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1333333333333333,"6.1-30",17.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 202 21 29,SN81FL,urban,202,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,9,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","32","30-59",Yes,1.0,yes,yes,1.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,higher,education,higher education,1.0,higher,yes,education,higher education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,less than once a week,less than once a week,at least once a week,1.0,"2","1",yes,0.329554,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,richer,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,Recieved support,,,No support,81.25,1.0,10.0,"5 and up",10.0,"5 and up",1.2857142857142858,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,15,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.1333333333333333,"6.1-30",17.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 202 22 2,SN8BFL,urban,202,22,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,202,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","57","30-59",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Poular,"13","5-14",13,"5-14",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.244107,0.0,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,housed by employer/ family/ friend,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",5.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.5,"6.1-30",6.0,"0-7",1,41,wants no more,wants no more,1.0,0.0,no,1,3,2,3,5,2,8,4,10 + 206 1 2,SN81FL,urban,206,1,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,jointly only,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,,No longer with first partner,No,Yes,No,Yes,No,No,sometimes,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,never,never,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","88","60+",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",16,<20,"15-19",7.0,"7+","2+","2",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.354168,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",3.0,"3-4",1.0,2.0,No food cooked in house,Other,,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",1.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 206 1 6,SN8BFL,urban,206,1,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,7,"3+",7,"6+","6+",0,"0",0.0,0.0,male,"25",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","58","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Mandinque,"16","15-19",16,"15-19",19,<20,"15-19",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,"1","1",yes,0.255795,0.0,0.0,,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,85.71428571428571,1.0,8.0,"5 and up",12.0,"5 and up",1.4,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 206 1 12,SN8BFL,urban,206,1,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"1","3+",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 12 months,,agricultural - self employed,agricultural,less than him,does not own,does not own,7,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","58","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"26","20+",,Inconsistent or don't know,25,"20-29","25-39",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.255795,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,85.71428571428571,1.0,8.0,"5 and up",12.0,"5 and up",1.4,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",3.0,"0-7",,,,,,,,2,2,4,2,6,5,5,7,2 + 206 2 3,SN81FL,urban,206,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,206,sedhiou urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",1.0,HW discussed FP,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","75","60+",No,1.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"20","20+",,Inconsistent or don't know,18,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.354168,0.0,,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.7142857142857144,"6.1-30",10.0,"7+",0,,never had sex,never had sex,,,no,1,3,2,3,2,2,8,4,10 + 206 2 4,SN8BFL,urban,206,2,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,4,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,someone else,husband/partner alone,respondent alone,someone else,"0","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,1.0,0.0,1.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",17,"15-19",18,<20,"15-19",4.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.255795,1.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,64.28571428571429,1.0,8.0,"5 and up",6.0,"5 and up",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,1.0,4.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 206 2 9,SN81FL,urban,206,2,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","48","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"23","20+",23,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.354168,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.7142857142857144,"6.1-30",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 206 2 14,SN81FL,urban,206,2,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"19","15-19",19,"15-19",19,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"1","1",yes,0.354168,0.0,,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,13.0,"5 and up",7.0,"5 and up",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,1.0,2.7142857142857144,"6.1-30",10.0,"7+",1,33,wants within 2 years,wants within 2 years,1.0,1.0,no,2,1,3,4,1,7,7,3,8 + 206 3 2,SN8BFL,urban,206,3,0.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","39","30-59",No,1.0,yes,yes,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.255795,1.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,50.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 206 3 11,SN81FL,urban,206,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","40","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"19","15-19",19,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,less than once a week,1.0,"1","1",yes,0.354168,0.0,0.0,,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.8333333333333334,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 206 3 27,SN81FL,urban,206,3,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,206,sedhiou urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,does not own,does not own,5,"3+",5,"3-5","3-5",1,"1",1.0,1.0,male,"21",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",22,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.354168,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",0.8333333333333334,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.5,"6.1-30",11.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 206 4 1,SN8BFL,urban,206,4,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","45","30-59",No,1.0,no,yes,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"17","15-19",17,"15-19",18,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.255795,0.0,0.0,,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",4.0,"3-4",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,3.0,"6.1-30",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 206 5 3,SN8BFL,urban,206,5,1.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,jointly only,4,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,husband/partner alone,respondent alone,other,"0","1-3","35","30-59",No,1.0,no,yes,1.0,"yes, child was treated",1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,primary,yes,education,some education,'No' to asked languages,"34","20+",17,"15-19",24,"20-29","20-24",2.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","3","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.255795,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,89.47368421052632,1.0,10.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.7272727272727273,"6.1-30",16.0,"7+",,,,,,,,2,2,4,2,4,4,1,7,9 + 206 5 6,SN8BFL,urban,206,5,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Family,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,alone only,4,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","74","60+",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"24","20+",24,"20+",26,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.255795,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,89.47368421052632,1.0,10.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.7272727272727273,"6.1-30",16.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 206 5 11,SN8BFL,urban,206,5,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,No,Yes,No,No,No,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.255795,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,middle,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,89.47368421052632,1.0,10.0,"5 and up",9.0,"5 and up",0.8,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.7272727272727273,"6.1-30",16.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 206 6 1,SN81FL,urban,206,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner opposes,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,2,"2",5,"3-5","3-5",0,"0",0.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","44","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.354168,1.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",4.0,"3-4",2.0,3.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 206 6 3,SN8BFL,urban,206,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,206,sedhiou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,7,"3+",6,"6+","6+",3,"2 or more",1.0,0.0,male,"18",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","41","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"12","5-14",12,"5-14",6,<20,<15,9.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"0","0",yes,0.255795,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.75,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"6.1-30",6.0,"0-7",0,,never had sex,never had sex,,,no,1,1,2,1,5,7,6,4,5 + 206 6 10,SN8BFL,urban,206,6,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"1-3","1-3","30","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"21","20+",14,"5-14",22,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.255795,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.75,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"6.1-30",6.0,"0-7",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 206 6 17,SN8BFL,urban,206,6,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,7,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","25",under 30,No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"15","15-19",14,"5-14",16,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,don't know,don't know,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.255795,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.75,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"6.1-30",6.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,1,1,7,4,8,8 + 206 6 22,SN8BFL,urban,206,6,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,206,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,7,"3+",2,"1-2",<3,2,"2 or more",1.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,respondent alone,other,respondent alone,respondent alone,"0","4+","41","30-59",Yes,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"15","15-19",15,"15-19",16,<20,"15-19",4.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.255795,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.75,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6,"6.1-30",6.0,"0-7",0,,never had sex,never had sex,,,no,2,1,3,4,1,7,7,3,8 + 206 7 2,SN81FL,urban,206,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,0.0,,0.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,other,"4",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,not at all,1.0,"1","1",yes,0.354168,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 206 7 2,SN8BFL,urban,206,7,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,"4",Less than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","29",under 30,No,0.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Arabic,"21","20+",15,"15-19",17,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,"1","1",yes,0.255795,0.0,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.125,"6.1-30",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 206 7 4,SN81FL,urban,206,7,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,1,"1",4,"3-5","3-5",1,"1",1.0,1.0,male,"16",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","57","30-59",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"22","20+",22,"20+",24,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.354168,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked inside,Food cooked inside,1.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.0,"6.1-30",10.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,6 + 206 7 6,SN8BFL,urban,206,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,services,service/domestic,Self,Currently working,1.0,Occassional,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent and husband/partner,other,other,respondent and husband/partner,respondent alone,other,"1-3","1-3","29",under 30,Yes,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"18","15-19",15,"15-19",16,<20,"15-19",2.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,don't know,don't know,don't know,not at all,at least once a week,not at all,1.0,"0","0",yes,0.255795,0.0,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.125,"6.1-30",8.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 206 7 14,SN8BFL,urban,206,7,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,206,sedhiou urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,no partner,no partner,not working,not working,,jointly only,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"22","20+",17,"15-19",18,<20,"15-19",1.0,"1-3","1","2",no one,TBA / no one,have another,,"0",<3,"0-4",not partnered,no,,,condom not used,1,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.255795,0.0,,,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",6.0,"5 and up",0.6,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.125,"6.1-30",8.0,"7+",,,,,,,,1,3,2,3,2,2,8,4,4 + 206 8 1,SN81FL,urban,206,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,female,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"14","5-14",14,"5-14",15,<20,"15-19",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.354168,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,5.0,1.0,0.0,1.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.5,"6.1-30",0.0,"0-7",,,,,,,,2,1,3,1,5,6,4,8,8 + 206 8 2,SN8BFL,urban,206,8,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,1.0,1.0,,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,alone only,2,"2",1,"1-2",<3,2,"2 or more",1.0,0.0,male,"23",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","63","60+",No,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",19,"15-19",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.255795,0.0,,,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,1,3,1,5,3,3,3,2,3 + 206 8 4,SN8BFL,urban,206,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.255795,0.0,0.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Yes,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,1.5,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 206 9 1,SN81FL,urban,206,9,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,1,"1",7,"6+","6+",0,"0",0.0,0.0,female,"22",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","51","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"16","15-19",,Inconsistent or don't know,16,<20,"15-19",7.0,"7+","2+","1",no one,TBA / no one,no more,does not want more kids,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.354168,0.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",4.0,"3-4",0.25,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.75,"6.1-30",10.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 206 9 7,SN8BFL,urban,206,9,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"8",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",15,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,not at all,less than once a week,1.0,"2","1",yes,0.255795,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.1818181818181817,"6.1-30",12.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 206 9 12,SN8BFL,urban,206,9,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,does not own,4,"3+",2,"1-2",<3,2,"2 or more",1.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","37","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,less than once a week,less than once a week,less than once a week,1.0,"3","1",yes,0.255795,0.0,0.0,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.1818181818181817,"6.1-30",12.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 206 9 16,SN8BFL,urban,206,9,0.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 12 months,,agricultural - self employed,agricultural,,does not own,does not own,4,"3+",2,"1-2",<3,0,"0",0.0,0.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","30","30-59",Yes,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",3.0,"1-3","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,"6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,no child <5,no child <5,no child <5,0.255795,1.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.3333333333333333,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.1818181818181817,"6.1-30",12.0,"7+",,,,,,,,1,1,3,3,5,7,8,4,10 + 206 10 1,SN81FL,urban,206,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,agricultural - self employed,agricultural,,jointly only,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,female,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",21,"20-29","20-24",2.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"0","0",yes,0.354168,0.0,,,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,4.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.3333333333333335,"6.1-30",7.0,"7+",1,27,wants within 2 years,wants within 2 years,1.0,0.0,no,1,2,1,5,4,1,6,6,5 + 206 10 2,SN8BFL,urban,206,10,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,jointly only,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"9",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"25","20+",25,"20+",25,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.255795,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,88.46153846153845,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.888888888888889,"6.1-30",11.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,0.0,yes,2,2,4,2,6,5,5,7,2 + 206 10 15,SN8BFL,urban,206,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Didn't work last 12 months,,not working,not working,,does not own,does not own,5,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","49","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",26,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.255795,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,Recieved support,,,No support,88.46153846153845,1.0,10.0,"5 and up",10.0,"5 and up",0.8333333333333334,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Washing place not observed,No washing station or place observed,0.0,2.888888888888889,"6.1-30",11.0,"7+",1,26,wants within 2 years,wants within 2 years,1.0,0.0,no,2,2,3,4,4,4,1,6,9 + 206 11 2,SN81FL,urban,206,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,0.0,"2",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,0.0,male,"10",More than 5 years,Yes,Yes,Yes,Yes,Yes,No,often,sometimes,often,often,often,never,never,never,never,often,never,sometimes,No,No,,,No,Yes,Yes,No,No,No,No,No,No,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","32","30-59",No,1.0,yes,no,1.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.354168,1.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,83.33333333333334,1.0,3.0,"3-4",3.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",0.0,"0-7",,,,,,,,1,1,2,1,2,7,6,3,5 + 206 12 2,SN81FL,urban,206,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,0.0,206,sedhiou urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,2,"2",8,"6+","6+",1,"1",1.0,0.0,male,"24",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","46","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",9.0,"7+","2+","1",no one,TBA / no one,have another,"3-4 years",More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"3",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"0","0",no,0.354168,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,100.0,1.0,2.0,"2",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.5,"6.1-30",5.0,"0-7",2,22,wants in 2+ years,wants after 2+ years,,1.0,no,1,1,2,1,2,7,6,3,5 + 206 13 2,SN8BFL,urban,206,13,0.0,1.0,1.0,1.0,0.0,0.0,1.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,Yes,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","35","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.255795,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,5.0,"6.1-30",0.0,"0-7",,,,,,,,2,2,3,4,4,4,1,6,9 + 206 14 1,SN8BFL,urban,206,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,professional/technical/managerial,,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,does not own,alone only,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,yes,yes,1.0,,,,,,,christian,0.0,higher,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",26,"20+",28,"20-29","25-39",2.0,"1-3","2+","1",no one,TBA / no one,have another,don't know,"4","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.255795,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,middle,renting/ co-renting/ tenant-buyer,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",1.0,"1-2",0.0,0.0,Food cooked inside in a separate kitchen,Food cooked inside,1.0,1.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"6.1-30",15.0,"7+",,,,,,,,1,3,1,5,3,3,3,9,1 + 206 14 2,SN81FL,urban,206,14,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","42","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",21,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.354168,1.0,,,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",0.0,"0-7",1,28,wants within 2 years,wants within 2 years,1.0,1.0,no,1,3,1,5,3,3,3,2,3 + 206 15 1,SN81FL,urban,206,15,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,jointly only,3,"3+",6,"6+","6+",0,"0",0.0,0.0,female,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"23","20+",23,"20+",24,"20-29","20-24",6.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.354168,0.0,0.0,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,36.36363636363637,1.0,3.0,"3-4",8.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,5.5,"6.1-30",6.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 206 15 2,SN8BFL,urban,206,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,6,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"20","20+",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","2",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"2","1",yes,0.255795,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,4.0,"3-4",12.0,"5 and up",3.0,4.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 206 15 8,SN81FL,urban,206,15,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,does not own,jointly only,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,No,Yes,No,Yes,No,No,never,never,sometimes,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","55","30-59",No,0.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",21,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,not at all,not at all,0.0,"1","1",yes,0.354168,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,36.36363636363637,1.0,3.0,"3-4",8.0,"5 and up",1.5,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,5.5,"6.1-30",6.0,"0-7",,,,,,,,1,2,1,5,6,1,2,5,7 + 206 15 14,SN8BFL,urban,206,15,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Occassional,Worked last 12 months,,unskilled manual,manual,less than him,does not own,does not own,6,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","30","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.255795,0.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,100.0,1.0,4.0,"3-4",12.0,"5 and up",3.0,4.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,4.0,"6.1-30",3.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 206 16 1,SN8BFL,urban,206,16,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,206,sedhiou urbain,1.0,"1","2",Second or more wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,0,"0",1,"1-2",<3,0,"0",0.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","49","30-59",Yes,0.0,no,yes,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,'No' to asked languages,"17","15-19",17,"15-19",29,"20-29","25-39",2.0,"1-3","2+","2",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.255795,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,50.0,1.0,1.0,"0-1",1.0,"1-2",0.0,0.0,Food cooked inside,Food cooked inside,1.0,0.0,2,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,1.0,"6.1-30",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 206 17 1,SN81FL,urban,206,17,0.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Family,Currently working,1.0,Seasonal,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,jointly only,5,"3+",5,"3-5","3-5",0,"0",0.0,1.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","95","60+",No,1.0,yes,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Poular,"19","15-19",8,"5-14",20,"20-29","20-24",5.0,"4-6","2+","2",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"5",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.354168,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",14.0,"5 and up",2.5,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,6,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.1666666666666665,"6.1-30",6.0,"0-7",,,,,,,,1,2,1,5,4,1,6,6,5 + 206 17 2,SN8BFL,urban,206,17,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,1,"1",2,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","34","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"26","20+",26,"20+",26,"20-29","25-39",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"1","1",yes,0.255795,0.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"6.1-30",10.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 206 18 1,SN81FL,urban,206,18,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,jointly only,0,"0",3,"3-5","3-5",1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","95","60+",Yes,1.0,yes,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"14","5-14",14,"5-14",14,<20,<15,4.0,"4-6","2+","3+",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.354168,1.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",0.0,"0-7",0,,,,,,no,1,3,2,3,5,2,8,4,10 + 206 18 6,SN8BFL,urban,206,18,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,4,"3+",3,"3-5","3-5",0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","75","60+",No,1.0,no,no,1.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"33","20+",16,"15-19",28,"20-29","25-39",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"1","1",yes,0.255795,0.0,,,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,Recieved support,,,No support,94.11764705882352,1.0,11.0,"5 and up",9.0,"5 and up",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,13,"6+",0.0,1.0,1.0,6.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6153846153846154,"6.1-30",10.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 206 19 2,SN8BFL,urban,206,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,jointly only,does not own,2,"2",7,"6+","6+",0,"0",0.0,0.0,male,"20",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","45","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,1.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,Mandinque,"18","15-19",18,"15-19",20,"20-29","20-24",7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.255795,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",13.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 206 19 3,SN81FL,urban,206,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,female,"14",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","38","30-59",No,1.0,yes,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",5.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,don't know,don't know,don't know,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.354168,0.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,94.73684210526315,1.0,8.0,"5 and up",11.0,"5 and up",1.0,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,10,"6+",0.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.9,"6.1-30",6.0,"0-7",,,,,,,,1,1,2,1,5,7,6,4,5 + 206 20 3,SN81FL,urban,206,20,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,jointly only,3,"3+",3,"3-5","3-5",0,"0",0.0,0.0,female,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","32","30-59",No,1.0,yes,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"21","20+",21,"20+",22,"20-29","20-24",3.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",0.0,1.0,never circumcised,never circumcised,,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.354168,1.0,0.0,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",5.0,"5 and up",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,4.0,"6.1-30",1.0,"0-7",1,26,wants in 2+ years,wants after 2+ years,1.0,1.0,no,1,2,1,5,6,1,2,5,7 + 206 21 1,SN81FL,urban,206,21,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,other,other/dk,less than him,jointly only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,1.0,female,"18",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","95","60+",No,1.0,yes,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"24","20+",24,"20+",25,"20-29","25-39",5.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,not at all,0.0,no child <5,no child <5,no child <5,0.354168,0.0,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",4.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Water not piped,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",3.0,"0-7",,,,,,,,1,3,1,5,3,3,3,9,6 + 206 21 9,SN8BFL,urban,206,21,0.0,1.0,1.0,1.0,0.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,1.0,0.0,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,0.0,male,"9",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,sometimes,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","28",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,secondary,yes,education,higher education,'No' to asked languages,"15","15-19",15,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"4",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.255795,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,middle,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,84.61538461538461,1.0,8.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.625,"6.1-30",10.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 206 22 1,SN8BFL,urban,206,22,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,206,sedhiou urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,no partner,no partner,not working,not working,less than him,jointly only,alone only,2,"2",6,"6+","6+",0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,not partnered,not partnered,,,'No' to asked languages,"11","5-14",13,"5-14",13,<20,<15,7.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",not partnered,no,,,condom not used,0,1,,,,"5",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.255795,1.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",1.0,"0-7",,,,,,,,2,1,3,1,5,7,4,8,8 + 206 22 2,SN81FL,urban,206,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,206,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,1.0,"no, child wasn't treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.354168,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Do not send/ Don't know,Do not send/ Don't know,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",13.0,"7+",1,32,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,4,2,6,5,5,7,2 + 206 22 6,SN8BFL,urban,206,22,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,206,sedhiou urbain,1.0,"1","3+",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Worked in the past year,0.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,1.0,female,"11",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,husband/partner alone,other,other,respondent alone,respondent alone,other,"0","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",17,<20,"15-19",4.0,"4-6","2+","2",no one,TBA / no one,have another,don't know,More than 6,"6+","5+",don't know,yes,,,relatives/friends,1,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,not at all,1.0,no child <5,no child <5,no child <5,0.255795,1.0,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,housed by employer/ family/ friend,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",4.0,"3-4",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No washing station,No washing station or place observed,0.0,2.3333333333333335,"6.1-30",1.0,"0-7",,,,,,,,1,3,2,3,2,2,8,4,10 + 210 2 2,SN81FL,urban,210,2,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,0,"0",3,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","46","30-59",No,1.0,no,no,0.0,,,,,,,christian,0.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"20","20+",20,"20+",20,"20-29","20-24",4.0,"4-6","2+","1",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants fewer,no,,,condom not used,0,1,,0.0,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.262834,0.0,,,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,poorest,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,2.0,"2",3.0,"3-4",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,3.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",12.0,"7+",1,34,wants within 2 years,wants within 2 years,0.0,0.0,yes,1,3,1,5,3,3,3,9,1 + 210 4 1,SN81FL,urban,210,4,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210,sedhiou urbain,1.0,"1","1",First wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,jointly only,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,1.0,female,"14",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","40","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"25","20+",25,"20+",27,"20-29","25-39",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,at least once a week,at least once a week,1.0,"2","1",yes,0.262834,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,0.0,0.0,4.0,"3-4",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.4285714285714286,"6.1-30",11.0,"7+",0,,never had sex,never had sex,,,no,2,2,4,2,6,5,5,7,2 + 210 7 2,SN81FL,urban,210,7,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,,,,,0.0,0.0,1.0,0.0,0.0,,,,,1.0,1.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",1.0,HW did not discuss FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,does not own,does not own,3,"3+",2,"1-2",<3,1,"1",1.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","0","40","30-59",No,0.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,not at all,1.0,"1","1",yes,0.262834,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",1.0,0.0,,,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"6.1-30",12.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 210 7 7,SN81FL,urban,210,7,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Occassional,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","30","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",20,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"0","0",yes,0.262834,0.0,,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,9.0,"5 and up",9.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",1.0,0.0,,,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.25,"6.1-30",12.0,"7+",,,,,,,,2,2,3,4,4,4,1,6,9 + 210 8 1,SN81FL,urban,210,8,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,1,"1",4,"3-5","3-5",0,"0",0.0,1.0,female,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","48","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,don't know,don't know,,,'No' to asked languages,"16","15-19",16,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"2",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.262834,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,1.0,"0-1",2.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,3.0,"6.1-30",1.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 210 10 4,SN81FL,urban,210,10,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,not working,not working,less than him,does not own,does not own,1,"1",5,"3-5","3-5",0,"0",0.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","40","30-59",Yes,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,higher,yes,education,higher education,'No' to asked languages,"14","5-14",14,"5-14",16,<20,"15-19",6.0,"4-6","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.262834,0.0,0.0,,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,80.0,1.0,6.0,"5 and up",4.0,"3-4",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,4,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,No washing station,No washing station or place observed,0.0,2.5,"6.1-30",8.0,"7+",,,,,,,,2,1,3,1,5,6,4,8,8 + 210 12 7,SN81FL,urban,210,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,does not own,2,"2",1,"1-2",<3,0,"0",0.0,1.0,male,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,other,husband/partner alone,respondent alone,other,"0","1-3","39","30-59",No,1.0,no,yes,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.262834,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,poorest,owner/ co-owner,0.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,81.81818181818183,1.0,6.0,"5 and up",5.0,"5 and up",2.0,3.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,11,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.0,"6.1-30",13.0,"7+",0,,,,,,no,2,1,3,4,1,7,7,3,8 + 210 13 1,SN81FL,urban,210,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,0.0,female,"6",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","38","30-59",No,1.0,no,no,1.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",19,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,yes,,,church,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,less than once a week,1.0,"2","1",yes,0.262834,0.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 210 13 6,SN81FL,urban,210,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,services,service/domestic,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,female,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,someone else,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","28",under 30,No,1.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,'No' to asked languages,"16","15-19",16,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,other,"2",1.0,1.0,no,yes,never circumcised,less than once a week,at least once a week,less than once a week,1.0,"1","1",yes,0.262834,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send International,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,7.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,Water not piped,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4,"6.1-30",6.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 210 14 2,SN81FL,urban,210,14,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,jointly only,does not own,1,"1",6,"6+","6+",0,"0",0.0,0.0,male,"19",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","58","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,no education,no,no education,some education,Mandinque,"17","15-19",17,"15-19",20,"20-29","20-24",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,less than once a week,at least once a week,1.0,"1","1",yes,0.262834,0.0,,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",7.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,6.0,1.0,0.0,1.0,0.0,No,1.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.4,"6.1-30",12.0,"7+",1,42,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,2,3,4,4,4,1,6,9 + 210 15 2,SN81FL,urban,210,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,1.0,1.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Someone else,Currently working,1.0,Seasonal,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,does not own,2,"2",4,"3-5","3-5",2,"2 or more",1.0,0.0,male,"17",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,husband/partner alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","50","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Mandinque,"16","15-19",,Inconsistent or don't know,16,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,no,yes,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.262834,1.0,,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4285714285714286,"6.1-30",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 210 15 7,SN81FL,urban,210,15,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,services,service/domestic,less than him,jointly only,does not own,2,"2",4,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","35","30-59",No,1.0,no,no,0.0,"yes, child was treated",,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Mandinque,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.262834,1.0,0.0,,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,1.4285714285714286,"6.1-30",4.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 210 16 2,SN81FL,urban,210,16,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,1.0,1.0,1.0,1.0,1.0,"3+",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",3,"3-5","3-5",1,"1",1.0,1.0,female,"3",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,other,husband/partner alone,"0","1-3","38","30-59",No,1.0,no,no,0.0,"no, child wasn't treated",,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"31","20+",15,"15-19",22,"20-29","20-24",4.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.262834,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,62.5,1.0,3.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",2.0,"0-7",,,,,,,,2,2,4,4,4,4,1,6,9 + 210 16 6,SN81FL,urban,210,16,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,,,,,0.0,1.0,0.0,1.0,0.0,,,,,0.0,0.0,0.0,210,sedhiou urbain,0.0,not partnered,not currently married,not partnered,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,household and domestic,service/domestic,Self,Worked in the past year,0.0,All year,no partner,no partner,not working,not working,,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,0.0,female,not partnered,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,not partnered,No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,primary,education,some education,1.0,not partnered,not partnered,,,'No' to asked languages,"23","20+",23,"20+",25,"20-29","25-39",2.0,"1-3","2+","3+",midwife/aux midwife,midwife / doctor / nurse,have another,,"5","3-5","5+",not partnered,yes,,,relatives/friends,1,1,,,,"3",1.0,1.0,yes,,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.262834,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,62.5,1.0,3.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,2.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",2.0,"0-7",,,,,,,,2,2,4,5,6,5,5,1,2 + 210 19 2,SN81FL,urban,210,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,skilled manual,manual,,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"12",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","47","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,1.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",8,"5-14",20,"20-29","20-24",5.0,"4-6","2+","2",no one,TBA / no one,have another,"3-4 years","6","6+","5+",don't know,no,,,condom not used,0,1,,,,"5",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"1","1",yes,0.262834,1.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,72.72727272727273,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.375,"6.1-30",12.0,"7+",,,,,,,,1,2,1,5,4,1,6,6,5 + 210 19 6,SN81FL,urban,210,19,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,sales,sales,,does not own,does not own,3,"3+",2,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,husband/ partner alone,husband/partner alone,"0","0","95","60+",No,1.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",2.0,"1-3","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"4",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.262834,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Recieved support,,,No support,72.72727272727273,1.0,5.0,"5 and up",6.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,8,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.375,"6.1-30",12.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 + 210 20 5,SN81FL,urban,210,20,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,210,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,skilled manual,manual,less than him,jointly only,jointly only,2,"2",2,"1-2",<3,1,"1",1.0,1.0,female,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","1-3","95","60+",Yes,1.0,yes,no,0.0,"yes, child was treated",1.0,0.0,0.0,0.0,0.0,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,'No' to asked languages,"26","20+",8,"5-14",22,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,"5+ years","4","3-5","0-4",don't know,no,,,condom not used,0,1,,0.0,,"5",1.0,1.0,yes,,,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.262834,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,100.0,1.0,6.0,"5 and up",3.0,"3-4",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.8,"6.1-30",12.0,"7+",0,,never had sex,never had sex,,,no,1,2,1,5,6,1,2,5,7 + 210 21 1,SN81FL,urban,210,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,,,,,0.0,1.0,1.0,0.0,0.0,,,,,0.0,0.0,0.0,210,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Self,Currently working,1.0,All year,Worked last 7 days,Yes,not working,not working,don't know,does not own,does not own,1,"1",3,"3-5","3-5",0,"0",0.0,1.0,female,"13",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,,,,,,,,,,,respondent alone,husband/partner alone,respondent alone,respondent alone,respondent alone,respondent alone,"0","4+","95","60+",No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,christian,0.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"32","20+",32,"20+",33,"30+","25-39",3.0,"1-3","2+","1",no one,TBA / no one,no more,does not want more kids,"3","3-5","0-4",both want same,no,,,condom not used,0,1,,0.0,not having/infrequent sex,"0",0.0,1.0,never circumcised,never circumcised,,at least once a week,less than once a week,less than once a week,1.0,"1","1",yes,0.262834,1.0,,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,poorer,renting/ co-renting/ tenant-buyer,0.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,0.0,0.0,1.0,"0-1",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,1.0,2,<6,0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,1.0,"6.1-30",13.0,"7+",,,,,,,,1,2,1,5,6,1,2,5,7 + 210 22 7,SN81FL,urban,210,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,210,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,does not own,2,"2",3,"3-5","3-5",0,"0",0.0,0.0,male,"7",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","54","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,Arabic,"14","5-14",14,"5-14",15,<20,"15-19",3.0,"1-3","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years",More than 6,"6+","5+",don't know,yes,,,relatives/friends,0,1,,0.0,respondent or partner opposed,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.262834,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,8.0,"5 and up",6.0,"5 and up",0.6666666666666666,1.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.0,"6.1-30",9.0,"7+",2,32,wants in 2+ years,wants after 2+ years,1.0,1.0,no,2,1,3,1,5,6,4,8,8 + 211 1 5,SN8BFL,urban,211,1,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Worked in the past year,0.0,All year,Didn't work last 12 months,,not working,not working,husband no earnings,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,male,"6",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,respondent alone,respondent and husband/ partner,husband/partner alone,"0","1-3","41","30-59",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"16","15-19",16,"15-19",19,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years","5","3-5","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,yes,,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.339987,0.0,,,1.0,0.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,poorest,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,87.5,1.0,7.0,"5 and up",1.0,"1-2",0.3333333333333333,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,1.0,4.0,1.0,0.0,1.0,0.0,No,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,1.0,1.6,"6.1-30",11.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 211 2 2,SN8BFL,urban,211,2,,,,,1.0,1.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,does not own,0,"0",4,"3-5","3-5",0,"0",0.0,0.0,male,"20",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","0","47","30-59",No,0.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"20","20+",20,"20+",21,"20-29","20-24",5.0,"4-6","2+","1",no one,TBA / no one,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.339987,1.0,,,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,100.0,1.0,3.0,"3-4",1.0,"1-2",0.0,0.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,2,<6,0.0,1.0,1.0,6.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.0,"6.1-30",7.0,"7+",1,28,wants within 2 years,wants within 2 years,1.0,1.0,yes,1,3,1,5,3,3,3,9,1 + 211 4 1,SN8BFL,urban,211,4,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,jointly only,does not own,1,"1",1,"1-2",<3,0,"0",0.0,0.0,female,"1",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,other,husband/partner alone,respondent and husband/ partner,other,"0","0","26",under 30,No,1.0,no,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,no education,no,no education,some education,'No' to asked languages,"19","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",don't know,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.339987,0.0,0.0,,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,66.66666666666666,1.0,2.0,"2",1.0,"1-2",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,1,<6,0.0,1.0,1.0,7.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,3.0,"6.1-30",10.0,"7+",1,27,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,4,1,7,7,3,8 + 211 6 5,SN8BFL,urban,211,6,1.0,1.0,1.0,1.0,0.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,,,,,0.0,1.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Someone else,Currently working,1.0,All year,Worked last 7 days,Yes,professional/technical/managerial,,less than him,does not own,does not own,2,"2",1,"1-2",<3,0,"0",0.0,0.0,male,"15",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","44","30-59",No,1.0,yes,yes,1.0,child didn't have diarrhea,,,,,,muslim,1.0,secondary,education,higher education,1.0,secondary,yes,education,higher education,'No' to asked languages,"12","5-14",12,"5-14",24,"20-29","20-24",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,<12 months,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,no,no,never circumcised,at least once a week,at least once a week,at least once a week,1.0,"1","1",yes,0.339987,0.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,9.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.7142857142857142,"6.1-30",10.0,"7+",1,29,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,2,3,2,4,6,1,6,9 + 211 6 7,SN8BFL,urban,211,6,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,211,sedhiou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,sales,sales,less than him,does not own,does not own,2,"2",2,"1-2",<3,0,"0",0.0,1.0,male,"10",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,someone else,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","50","30-59",No,1.0,yes,yes,1.0,,,,,,,muslim,1.0,primary,education,some education,1.0,secondary,yes,education,higher education,Mandinque,"22","20+",19,"15-19",23,"20-29","20-24",3.0,"1-3","2+","2",no one,TBA / no one,have another,<12 months,"5","3-5","5+",husband wants more,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,less than once a week,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.339987,1.0,,,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,1.0,1.0,richest,owner/ co-owner,1.0,Send to Senegal,Send funds,Send International,Send funds,No support,0.0,no,No support,76.92307692307693,1.0,9.0,"5 and up",4.0,"3-4",0.5,1.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,0.0,1.0,0.0,0.0,1.0,0.0,Yes,0.0,urban non-slum,0.0,Water and soap observed,Water and soap observed,0.0,1.7142857142857142,"6.1-30",10.0,"7+",0,,,,,,no,1,3,1,5,3,3,3,2,1 + 211 7 2,SN8BFL,urban,211,7,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,agricultural - self employed,agricultural,less than him,jointly only,jointly only,2,"2",8,"6+","6+",0,"0",0.0,0.0,male,"18",More than 5 years,Yes,No,No,No,No,No,never,never,never,never,"yes, but not in the last 12 months",never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,currently pregnant,respondent and husband/partner,"4+","1-3","60","60+",No,1.0,no,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,don't know,don't know,,,Arabic,"17","15-19",18,"15-19",19,<20,"15-19",8.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","6","6+","5+",both want same,no,,,condom not used,0,1,,0.0,,"0",1.0,1.0,yes,,never circumcised,not at all,not at all,at least once a week,1.0,"2","1",yes,0.339987,1.0,0.0,,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorer,owner/ co-owner,0.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,88.88888888888889,1.0,4.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,No,0.0,urban non-slum,0.0,No water or soap observed,No water and/or soap observed,0.0,3.0,"6.1-30",17.0,"7+",,,,,,,,2,1,3,4,1,7,7,3,8 + 211 9 6,SN8BFL,urban,211,9,,,,,0.0,0.0,,1.0,1.0,1.0,,,,,,,,,,,,,,,,,,,0.0,1.0,,211,sedhiou urbain,1.0,"1","1",First wife,1.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,other,other/dk,,jointly only,does not own,0,"0",2,"1-2",<3,2,"2 or more",1.0,0.0,male,,No longer with first partner,Yes,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,never,never,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent alone,respondent and husband/partner,"4+","1-3","51","30-59",Yes,0.0,no,no,1.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",13,"5-14",21,"20-29","20-24",4.0,"4-6","2+","3+",no one,TBA / no one,sterilized/infecund,does not want more kids,"2",<3,"0-4",husband wants more,no,,,condom not used,0,1,,0.0,,"3",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.339987,0.0,,,1.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Send to Senegal,Send funds,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,5.0,"5 and up",3.0,"3-4",0.0,0.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,4.0,1.0,0.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,No water or soap observed,No water and/or soap observed,0.0,2.6666666666666665,"6.1-30",7.0,"7+",,,,,,,,1,3,1,5,3,3,3,2,3 + 211 10 23,SN8BFL,urban,211,10,,,,,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,0.0,1.0,,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,1.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,more than him,does not own,does not own,8,"3+",5,"3-5","3-5",1,"1",1.0,1.0,male,,No longer with first partner,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,respondent alone,husband/partner alone,respondent alone,respondent alone,husband/partner alone,"0","4+","50","30-59",Yes,1.0,no,no,0.0,,,,,,,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"25","20+",,Inconsistent or don't know,18,<20,"15-19",6.0,"4-6","2+","2",no one,TBA / no one,sterilized/infecund,does not want more kids,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,no child <5,no child <5,no child <5,0.339987,1.0,,,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.6,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.888888888888889,"6.1-30",12.0,"7+",0,,,,,,yes,1,3,2,3,2,2,8,4,10 + 211 10 26,SN8BFL,urban,211,10,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,agricultural - self employed,agricultural,Self,Currently working,1.0,Seasonal,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,8,"3+",1,"1-2",<3,0,"0",0.0,1.0,male,"2",Less than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","37","30-59",No,0.0,no,no,0.0,"yes, child was treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",1.0,"1-3","1","1",midwife/aux midwife,midwife / doctor / nurse,have another,"1-2 years",More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.339987,0.0,0.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,No support,0.0,no,No support,100.0,1.0,11.0,"5 and up",9.0,"5 and up",1.6,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,9,"6+",0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.888888888888889,"6.1-30",12.0,"7+",0,,,,,,yes,2,1,3,4,1,7,7,3,8 + 211 13 2,SN8BFL,urban,211,13,1.0,1.0,1.0,1.0,1.0,1.0,0.0,,,,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",1.0,HW discussed FP,sales,sales,Family,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,2,"2",6,"6+","6+",0,"0",0.0,0.0,male,"15",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,respondent and husband/partner,respondent and husband/ partner,husband/partner alone,"1-3","1-3","42","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"17","15-19",17,"15-19",18,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",both want same,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,yes,never circumcised,not at all,less than once a week,less than once a week,1.0,"2","1",yes,0.339987,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,2.0,"2",2.0,"1-2",2.0,3.0,Food cooked inside,Food cooked inside,1.0,0.0,1,<6,0.0,1.0,1.0,8.0,1.0,0.0,0.0,0.0,Water not piped,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,4.0,"6.1-30",0.0,"0-7",,,,,,,,2,1,3,4,1,7,7,3,8 + 211 14 2,SN8BFL,urban,211,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,211,sedhiou urbain,1.0,"1","1",First wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",9,"6+","6+",0,"0",0.0,0.0,male,"30",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent and husband/ partner,husband/partner alone,"0","1-3","60","60+",No,1.0,no,no,0.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"7","5-14",7,"5-14",14,<20,<15,10.0,"7+","2+","1",midwife/aux midwife,midwife / doctor / nurse,no more,does not want more kids,"6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.339987,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.42857142857142855,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",6.0,"0-7",0,,,,,,yes,2,1,3,1,5,6,4,8,8 + 211 14 12,SN8BFL,urban,211,14,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,1.0,"2",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,3,"3+",1,"1-2",<3,0,"0",0.0,0.0,male,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","23",under 30,No,0.0,no,no,0.0,"no, child wasn't treated",0.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",13,"5-14",16,<20,"15-19",1.0,"1-3","1","2",midwife/aux midwife,midwife / doctor / nurse,have another,don't know,More than 6,"6+","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,not at all,not at all,not at all,0.0,"1","1",yes,0.339987,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.42857142857142855,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",6.0,"0-7",1,,wants within 2 years,wants within 2 years,1.0,1.0,yes,2,1,3,1,5,6,4,8,8 + 211 14 13,SN8BFL,urban,211,14,0.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,211,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Worked last 7 days,Yes,unskilled manual,manual,less than him,does not own,does not own,3,"3+",6,"6+","6+",0,"0",0.0,0.0,male,"17",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","60","60+",No,1.0,yes,no,1.0,child didn't have diarrhea,,,,,,muslim,1.0,no education,no education,some education,0.0,no education,no,no education,some education,'No' to asked languages,"18","15-19",18,"15-19",19,<20,"15-19",6.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"3-4 years","6","6+","5+",husband wants more,no,,,condom not used,0,1,,,,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.339987,1.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,poorest,renting/ co-renting/ tenant-buyer,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",0.42857142857142855,1.0,Food cooked inside,Food cooked inside,1.0,0.0,8,"6+",0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,No,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,2.5,"6.1-30",6.0,"0-7",0,,,,,,yes,2,1,3,4,1,7,7,3,8 + 211 15 7,SN8BFL,urban,211,15,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,211,sedhiou urbain,1.0,"1","2",Second or more wife,0.0,Partner does not oppose,0.0,1.0,0.0,,0.0,"1",0.0,No HW visit,sales,sales,Self,Currently working,1.0,All year,Didn't work last 12 months,,not working,not working,less than him,does not own,does not own,3,"3+",5,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,respondent alone,husband/partner alone,husband/partner alone,husband/partner alone,respondent alone,husband/partner alone,"0","1-3","52","30-59",No,0.0,no,no,0.0,child didn't have diarrhea,1.0,0.0,0.0,0.0,1.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,'No' to asked languages,"21","20+",21,"20+",23,"20-29","20-24",5.0,"4-6","2+","1",midwife/aux midwife,midwife / doctor / nurse,have another,"5+ years","4","3-5","0-4",husband wants more,no,,,condom not used,0,1,,0.0,other,"0",1.0,1.0,no,no,never circumcised,not at all,less than once a week,less than once a week,1.0,"1","1",yes,0.339987,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,6.0,"5 and up",6.0,"5 and up",3.0,4.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,7,"6+",0.0,1.0,1.0,2.0,1.0,1.0,0.0,1.0,Water not piped,0.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,1.7142857142857142,"6.1-30",11.0,"7+",,,,,,,,2,2,4,2,6,5,5,7,2 + 211 16 3,SN8BFL,urban,211,16,,,,,0.0,0.0,,1.0,0.0,0.0,,,,,,,,,,,,,,,,,,,0.0,0.0,,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,0.0,0.0,0.0,0.0,"0",0.0,No HW visit,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,professional/technical/managerial,,,does not own,does not own,1,"1",1,"1-2",<3,0,"0",0.0,1.0,female,"5",More than 5 years,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Not paid in cash or not working,husband/partner alone,husband/partner alone,husband/partner alone,currently pregnant,husband/partner alone,"0","0","27",under 30,No,0.0,no,no,1.0,,,,,,,muslim,1.0,secondary,education,higher education,1.0,primary,yes,education,some education,'No' to asked languages,"13","5-14",,Inconsistent or don't know,14,<20,<15,1.0,"1-3","1","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",don't know,no,,,condom not used,0,1,,0.0,,"4",1.0,1.0,no,no,never circumcised,less than once a week,less than once a week,at least once a week,1.0,no child <5,no child <5,no child <5,0.339987,0.0,,,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Send to Senegal,Send funds,Recieved support,,,No support,62.5,1.0,3.0,"3-4",5.0,"5 and up",1.0,2.0,Food cooked in a separate building,Food cooked outdoors,0.0,0.0,3,<6,0.0,1.0,1.0,2.0,1.0,0.0,0.0,0.0,Yes,0.0,urban slum,0.0,Water and soap observed,Water and soap observed,0.0,2.6666666666666665,"6.1-30",13.0,"7+",0,,,,,,yes,1,3,2,3,5,2,8,4,10 + 211 21 18,SN8BFL,urban,211,21,1.0,1.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,1.0,0.0,1.0,2.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,211,sedhiou urbain,1.0,"0",married with no other wives,Monomgaous union,0.0,No identified need for FP,0.0,1.0,0.0,,0.0,"1",1.0,HW discussed FP,not working,not working,Did not work,No work in the past 12 months,0.0,No work in past 12 months,Worked last 7 days,Yes,unskilled manual,manual,,does not own,does not own,5,"3+",4,"3-5","3-5",0,"0",0.0,0.0,male,"11",More than 5 years,No,No,No,No,No,No,never,never,never,never,never,never,never,never,never,never,never,never,No,No,,,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,Did not seek any help,no,Not paid in cash or not working,respondent and husband/partner,respondent and husband/partner,respondent and husband/partner,respondent and husband/ partner,respondent and husband/partner,"4+","0","35","30-59",No,0.0,no,no,1.0,child didn't have diarrhea,0.0,0.0,0.0,0.0,0.0,muslim,1.0,no education,no education,some education,0.0,primary,yes,education,some education,Arabic,"17","15-19",17,"15-19",17,<20,"15-19",4.0,"4-6","2+","1",no one,TBA / no one,have another,"5+ years","5","3-5","5+",both want same,no,,,condom not used,0,1,,,,"1",1.0,1.0,yes,,never circumcised,not at all,at least once a week,at least once a week,1.0,"2","1",yes,0.339987,1.0,0.0,0.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,poorest,owner/ co-owner,1.0,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,Do not send/ Don't know,No support,0.0,no,No support,100.0,1.0,10.0,"5 and up",10.0,"5 and up",1.6666666666666667,2.0,Food cooked outdoors,Food cooked outdoors,0.0,0.0,5,<6,0.0,1.0,0.0,1.0,0.0,1.0,0.0,1.0,Water not piped,1.0,urban slum,0.0,Water but no soap observed,No water and/or soap observed,0.0,4.2,"6.1-30",8.0,"7+",,,,,,,,1,1,2,1,2,7,6,3,5 diff --git a/hexa/datasets/tests/fixtures/senegal_rural_raw_profiling.csv b/hexa/datasets/tests/fixtures/senegal_rural_raw_profiling.csv new file mode 100644 index 000000000..c5fbb5c73 --- /dev/null +++ b/hexa/datasets/tests/fixtures/senegal_rural_raw_profiling.csv @@ -0,0 +1,265 @@ +column_name,data_type,missing_values,unique_values,distinct_values,constant_values +caseid,string,0,3141,3141,False +survey,string,0,2,2,False +strata,string,0,1,1,True +v001,int64,0,102,102,False +v002,int64,0,22,22,False +anc.4plus,float64,914,2,3,False +wom.hlthck,float64,924,2,3,False +baby.hlthck,float64,924,2,3,False +breastfed,float64,914,2,3,False +fp.mod.now,float64,0,2,2,False +fp.mod.ever,float64,0,2,2,False +hb.1,float64,914,2,3,False +mens.priv,float64,688,2,3,False +mens.prod,float64,688,2,3,False +mens.both,float64,688,2,3,False +ovrwgt.cnt,float64,914,2,3,False +undwgt.cnt,float64,914,4,5,False +stunt.cat2.cnt,float64,914,3,4,False +waste.cat2.cnt,float64,914,3,4,False +breastfeed.cnt,float64,914,3,4,False +meas.full.cnt,float64,1573,4,5,False +dpt.full.cnt,float64,1573,3,4,False +polio.full.cnt,float64,1573,3,4,False +zerodose.cnt,float64,1573,3,4,False +ovrwgt.yn,float64,914,2,3,False +undwgt.yn,float64,914,2,3,False +stunt.cat2.yn,float64,914,2,3,False +waste.cat2.yn,float64,914,2,3,False +breastfeed.yn,float64,914,2,3,False +meas.full.yn,float64,1573,2,3,False +dpt.full.yn,float64,1573,2,3,False +polio.full.yn,float64,1573,2,3,False +zerodose.yn,float64,1573,2,3,False +u1mort.yn,float64,0,2,2,False +u5mort.yn,float64,0,2,2,False +stl.yn,float64,921,2,3,False +v021,int64,0,102,102,False +v023,string,0,14,14,False +marr.cohab,float64,0,2,2,False +polygamy,string,0,3,3,False +wife.order,string,0,5,5,False +first.wife,string,0,4,4,False +infecund.meno,float64,0,2,2,False +fp.partner.oppose,string,0,3,3,False +med.permis,float64,0,2,2,False +med.cost,float64,0,2,2,False +med.dist,float64,0,2,2,False +med.cost.dist.moh,float64,1178,2,3,False +med.alone,float64,0,2,2,False +med.index,string,0,4,4,False +hw.visit.12mo,float64,0,2,2,False +hw.visit.fp,string,0,3,3,False +occupation,string,0,11,11,False +occupation.cat,string,109,7,8,False +occ.type,string,0,4,4,False +working,string,0,4,4,False +workingnow.yn,float64,0,2,2,False +work.seasonal,string,0,4,4,False +part.working,string,1,4,5,False +part.workingnow.yn,string,212,2,3,False +partner.occupation,string,0,12,12,False +partner.occupation.cat,string,452,7,8,False +earnings.rel.partner,string,1349,5,6,False +jnt.house.ownership,string,0,4,4,False +jnt.land.ownership,string,0,4,4,False +num.under5,int64,0,15,15,False +num.under5.cat,string,0,4,4,False +num.child.alive,int64,0,13,13,False +num.child.alive.cat,string,0,4,4,False +num.child.alive.moh.cat,string,0,3,3,False +num.child.die,int64,0,6,6,False +num.child.die.cat,string,0,3,3,False +num.child.die.moh.yn,float64,0,2,2,False +partner.absent.yn,float64,0,2,2,False +head.sex,string,0,2,2,False +yrs.curr.pship,string,438,39,40,False +yrs.curr.pship.cat,string,1,3,4,False +dv.physical,string,2545,2,3,False +dv.emotional,string,2545,2,3,False +dv.sexual,string,2545,2,3,False +dv.jealous.othermen,string,2545,2,3,False +dv.nofriends,string,2545,2,3,False +dv.nofamily.contact,string,2545,2,3,False +dv.humiliated,string,2545,4,5,False +dv.threatened,string,2545,4,5,False +dv.insulted,string,2545,4,5,False +dv.pushed,string,2545,4,5,False +dv.slapped,string,2545,4,5,False +dv.kicked,string,2545,4,5,False +dv.strangled,string,2545,2,3,False +dv.weapon,string,2545,1,2,True +dv.forcedsex1,string,2545,4,5,False +dv.forcedsex2,string,2545,4,5,False +dv.armtwist,string,2545,4,5,False +dv.forcedsex3,string,2545,4,5,False +dv.hurtpreg.husband,string,2545,2,3,False +dv.hurtpreg.formerp,string,2545,2,3,False +dv.prevparter.hurt,string,3233,4,5,False +dv.prevparter.forcedsex,string,3233,4,5,False +dv.friend.help,string,2826,2,3,False +dv.family.help,string,2826,3,4,False +dv.husband.help,string,2826,3,4,False +dv.formerp.help,string,2826,2,3,False +dv.formerb.help,string,2826,2,3,False +dv.neighbor.help,string,2826,3,4,False +dv.other.help,string,2826,2,3,False +dv.sso.help,string,2826,2,3,False +dv.religious.help,string,2826,2,3,False +dv.anyone.help,string,2854,2,3,False +desc.ownincome,string,0,6,6,False +desc.lrgpur,string,0,6,6,False +desc.money,string,0,6,6,False +desc.hlth,string,0,6,6,False +desc.fp,string,0,6,6,False +desc.visit,string,0,6,6,False +jd.index,string,0,4,4,False +wd.index,string,0,4,4,False +partner.age,string,0,68,68,False +partner.age.cat,string,0,4,4,False +prev.pship,string,0,2,2,False +has.mobile,float64,0,2,2,False +mobile.financial,string,0,2,2,False +has.bank,string,0,2,2,False +internet.use,float64,0,2,2,False +diarrhea.medtreat,string,951,3,4,False +bf.fortified.food,float64,2083,2,3,False +bf.sweet.snacks,float64,2083,2,3,False +bf.meat,float64,2083,2,3,False +bf.beans,float64,2083,2,3,False +bf.other.solid,float64,2083,2,3,False +religion,string,0,4,4,False +muslim,float64,0,2,2,False +ed.level,string,0,5,5,False +ed.level.moh.cat1,string,0,2,2,False +ed.level.moh.cat2,string,0,2,2,False +anyed.yn,float64,0,2,2,False +partner.ed.level,string,0,6,6,False +partner.anyed.yn,string,0,4,4,False +partner.ed.level.moh.cat1,string,388,2,3,False +partner.ed.level.moh.cat2,string,388,2,3,False +pl.cat,string,0,9,9,False +age.1stcohab,string,0,39,39,False +age.1stcohab.cat,string,0,3,3,False +age.1stsex,float64,124,35,36,False +age.1stsex.cat,string,0,4,4,False +age.1stbrth,int64,0,36,36,False +age.1stbrth.moh.cat1,string,0,3,3,False +age.1stbrth.moh.cat2,string,0,5,5,False +num.preg,float64,0,13,13,False +num.preg.cat,string,0,3,3,False +num.preg.moh.cat,string,0,2,2,False +total.sex.partners,string,2,3,4,False +discharge.checkedhealth,string,0,4,4,False +discharge.checkedhealth.moh.cat,string,0,2,2,False +fertility.pref,string,0,4,4,False +fertility.pref.cat,string,103,6,7,False +ideal.n.child,string,0,8,8,False +ideal.n.child.moh.cat,string,0,3,3,False +ideal.n.child.cat,string,0,2,2,False +partner.desire.child,string,20,5,6,False +condom.last.sex,string,0,2,2,False +condom.2nd.last.sex,string,3320,2,3,False +condom.3rd.last.sex,float64,3326,0,1,False +condom.source,string,0,8,8,False +n.sex.excl.partner.12m,int64,0,3,3,False +n.sex.incl.partner.12m,int64,0,2,2,False +sex.gifts.12m,string,3314,2,3,False +source.fp.gov,float64,1260,2,3,False +no.fp.reason,string,2460,10,11,False +dv.index,int64,0,6,6,False +female.circumcision,float64,0,2,2,False +know.genitalcut,float64,0,2,2,False +genitalflesh.removed,string,129,4,5,False +genital.nicked,string,848,4,5,False +genital.sewn,string,2247,4,5,False +freq.newsp,string,0,3,3,False +freq.rad,string,0,3,3,False +freq.tv,string,0,3,3,False +any.media.yn,float64,0,2,2,False +birth.reg.cnt,string,0,6,6,False +birth.reg.yn,string,0,3,3,False +birth.knowreg,string,0,3,3,False +wt,float64,0,166,166,False +lives.away,float64,0,2,2,False +micronutrient.12m,float64,1573,2,3,False +num.solidfood,float64,2083,2,3,False +hh.electricity,float64,0,2,2,False +hh.radio,float64,0,2,2,False +hh.tv,float64,0,2,2,False +hh.refrig,float64,0,2,2,False +hh.bike,float64,0,2,2,False +hh.motor,float64,0,2,2,False +hh.car,float64,0,2,2,False +hh.mobile,float64,0,2,2,False +hh.cart,float64,0,2,2,False +hh.motorboat,float64,0,2,2,False +hh.motortransport.yn,float64,0,2,2,False +hh.computer,float64,0,2,2,False +hh.stove,float64,0,2,2,False +hh.video,float64,0,2,2,False +hh.internet,float64,0,2,2,False +hh.land,float64,0,2,2,False +hh.animal,float64,0,2,2,False +hh.bank.acct,float64,0,2,2,False +wealth.index.ur,string,0,5,5,False +hh.house.ownership,string,0,3,3,False +hh.savingsclub,float64,0,2,2,False +hh.send.funds,string,0,3,3,False +hh.send.funds.cat,string,0,2,2,False +hh.recv.funds,string,0,3,3,False +hh.recv.funds.cat,string,0,2,2,False +hh.bourse,string,0,2,2,False +hh.bourse.cnt,float64,504,18,19,False +hh.bourse.moh.yn,string,504,2,3,False +hh.autre,string,0,2,2,False +hh.pct.no.insurance,float64,0,149,149,False +hh.no.insurance.yn,float64,0,2,2,False +num.15up,float64,0,17,17,False +num.15up.cat,string,0,4,4,False +num.under15,float64,0,15,15,False +num.under15.cat,string,0,4,4,False +hh.kidwom.rat,float64,0,54,54,False +hh.kidwom.rat.cat,float64,0,5,5,False +hh.where.cook,string,0,6,6,False +hh.where.cook.moh.cat,string,0,3,3,False +hh.cook.inside.yn,float64,30,2,3,False +hh.clean.fuel,float64,0,2,2,False +hh.rooms.num,int64,0,19,19,False +hh.rooms.num.moh.cat,string,0,2,2,False +latrine,float64,0,2,2,False +no.latrine,float64,0,2,2,False +hh.shared.latrine,float64,51,2,3,False +hh.num.sharelatrine,float64,63,10,11,False +hh.noimp.latrine,float64,0,2,2,False +water,float64,0,2,2,False +hh.nowatpur,float64,0,2,2,False +hh.noimp.water,float64,23,2,3,False +hh.wat.interrupt,string,1,3,4,False +hh.noimp.floor,float64,0,2,2,False +hh.urban.slum.un,string,0,2,2,False +hh.urban.slum.zulu,float64,0,2,2,False +hh.sanitation,string,0,6,6,False +hh.sanitation.cat,string,0,3,3,False +disability.yn,float64,0,2,2,False +hh.memsleep,float64,0,139,139,False +malaria.zone,string,0,3,3,False +highestyearsedinHH.yrs,float64,0,22,22,False +highestyearsedinHH.7plus,string,0,2,2,False +m.num.partners,float64,2022,5,6,False +m.age.1stbirth,float64,2538,33,34,False +m.recent.sex,string,2210,6,7,False +m.more.children,string,2210,7,8,False +m.men.dec.earnings,float64,2568,2,3,False +m.men.dec.purchases,float64,2545,2,3,False +m.fp.posters,string,2022,2,3,False +LCA2_class,int64,0,2,2,False +LCA3_class,int64,0,3,3,False +LCA4_class,int64,0,4,4,False +LCA5_class,int64,0,5,5,False +LCA6_class,int64,0,6,6,False +LCA7_class,int64,0,7,7,False +LCA8_class,int64,0,8,8,False +LCA9_class,int64,0,9,9,False +LCA10_class,int64,0,10,10,False diff --git a/hexa/datasets/tests/test_sample_extraction.py b/hexa/datasets/tests/test_sample_extraction.py new file mode 100644 index 000000000..d04953c3f --- /dev/null +++ b/hexa/datasets/tests/test_sample_extraction.py @@ -0,0 +1,107 @@ +import json +import os +from unittest import mock + +import pandas as pd + +from hexa.core.test import TestCase +from hexa.datasets.queue import ( + calculate_profiling_per_column, + dataframe_to_sample, + download_file_as_dataframe, + is_supported_mimetype, +) + + +class TestCreateDatasetFileSample(TestCase): + @mock.patch("hexa.datasets.queue.generate_download_url") + def test_generate_file_metadata_task_success( + self, + mock_generate_download_url, + ): + test_cases = [ + ( + "example_names.csv", + '[{"name":"Jack","surname":"Howard"},{"name":"Olivia","surname":"Brown"}]', + ), + ( + "example_names_2_lines.csv", + '[{"name":"Liam","surname":"Smith"},{"name":"Joe","surname":"Doe"}]', + ), + ( + "example_names.parquet", + '[{"name":"Jack","surname":"Howard"},{"name":"Olivia","surname":"Brown"}]', + ), + ( + "example_names.xlsx", + '[{"name":"Jack","surname":"Howard"},{"name":"Olivia","surname":"Brown"}]', + ), + ] + for filename, expected_content in test_cases: + with self.subTest(filename=filename): + # Mock out the dependencies used in generate_file_metadata_task method we try to test + mock_dataset_version_file = mock.Mock(id=1, filename=filename) + + # Path to mocked fixture to test + fixture_file_path = os.path.join( + os.path.dirname(__file__), f"./fixtures/{filename}" + ) + mock_generate_download_url.return_value = fixture_file_path + + # Test sample generation + self.assertTrue(is_supported_mimetype(filename)) + dataframe = download_file_as_dataframe( + dataset_version_file=mock_dataset_version_file + ) + self.assertIsNotNone(dataframe) + sample_slice = ( + dataframe_to_sample(dataframe).iloc[:2, :].reset_index(drop=True) + ) + + # Assert result with expected fixture + expected = pd.DataFrame(json.loads(expected_content)) + self.assertTrue(sample_slice.equals(expected)) + + # reset mocks for each case run + mock_generate_download_url.assert_called_once_with( + mock_dataset_version_file + ) + mock_generate_download_url.reset_mock() + + @mock.patch("hexa.datasets.queue.generate_download_url") + def test_automated_profiling_generation( + self, + mock_generate_download_url, + ): + filenames = ["example_names_with_age.csv", "senegal_rural_raw.csv"] + for filename in filenames: + # Mock out the dependencies used in generate_file_metadata_task method we try to test + mock_dataset_version_file = mock.Mock(id=1, filename=filename) + + # Path to mocked fixture to test + fixture_file_path = os.path.join( + os.path.dirname(__file__), f"./fixtures/{filename}" + ) + mock_generate_download_url.return_value = fixture_file_path + + # Test sample generation + self.assertTrue(is_supported_mimetype(filename)) + dataframe = download_file_as_dataframe( + dataset_version_file=mock_dataset_version_file + ) + profiling = calculate_profiling_per_column(dataframe) + + # Assert result with expected fixture + expected_profiling = pd.read_csv( + fixture_file_path.replace(".csv", "_profiling.csv") + ).sort_index(axis=1) + comparison = expected_profiling.compare( + pd.DataFrame(profiling).sort_index(axis=1) + ) + self.assertTrue(comparison.empty) + + # reset mocks for each case run + mock_generate_download_url.assert_called_once_with( + mock_dataset_version_file + ) + mock_generate_download_url.reset_mock() diff --git a/hexa/datasets/tests/test_schema.py b/hexa/datasets/tests/test_schema.py index 161f0ea96..fed09db4c 100644 --- a/hexa/datasets/tests/test_schema.py +++ b/hexa/datasets/tests/test_schema.py @@ -2,6 +2,7 @@ from io import BytesIO from django.conf import settings +from django.contrib.contenttypes.models import ContentType from django.db import IntegrityError from hexa.core.test import GraphQLTestCase @@ -9,7 +10,8 @@ from hexa.user_management.models import User from hexa.workspaces.models import WorkspaceMembershipRole -from ..models import Dataset, DatasetFileMetadata, DatasetVersionFile +from ...metadata.models import MetadataAttribute +from ..models import Dataset, DatasetFileSample, DatasetVersionFile from .testutils import DatasetTestMixin @@ -472,17 +474,29 @@ def test_get_file_metadata(self): uri=dataset.latest_version.get_full_uri("file.csv"), created_by=superuser, ) - metadata = DatasetFileMetadata.objects.create( + sample = DatasetFileSample.objects.create( dataset_version_file=file, sample=json.dumps({"key": "value"}), - status=DatasetFileMetadata.STATUS_PROCESSING, + status=DatasetFileSample.STATUS_PROCESSING, + ) + metadataAttribute = MetadataAttribute.objects.create( + key="key1", + value="value1", + system=True, + content_type=ContentType.objects.get_for_model(DatasetVersionFile), + object_id=file.id, ) r = self.run_query( """ query GetDatasetVersionFile($id: ID!) { datasetVersionFile(id: $id) { filename - fileMetadata { + metadata { + attributes { + key, value, system + } + } + fileSample { status sample } @@ -495,9 +509,58 @@ def test_get_file_metadata(self): { "datasetVersionFile": { "filename": file.filename, - "fileMetadata": { + "metadata": { + "attributes": [ + { + "key": metadataAttribute.key, + "value": metadataAttribute.value, + "system": metadataAttribute.system, + } + ] + }, + "fileSample": {"status": sample.status, "sample": sample.sample}, + } + }, + r["data"], + ) + + def test_get_file_metadata_fail(self): + self.test_create_dataset_version() + superuser = User.objects.get(email="superuser@blsq.com") + dataset = Dataset.objects.get(name="Dataset") + self.client.force_login(superuser) + file = DatasetVersionFile.objects.create( + dataset_version=dataset.latest_version, + uri=dataset.latest_version.get_full_uri("file.csv"), + created_by=superuser, + ) + metadata = DatasetFileSample.objects.create( + dataset_version_file=file, + sample=json.dumps({}), + status=DatasetFileSample.STATUS_FAILED, + status_reason="ParserError: Error tokenizing data", + ) + r = self.run_query( + """ + query GetDatasetVersionFile($id: ID!) { + datasetVersionFile(id: $id) { + filename + fileSample { + status + statusReason + } + } + } + """, + {"id": str(file.id)}, + ) + self.assertEqual( + { + "datasetVersionFile": { + "filename": file.filename, + "fileSample": { "status": metadata.status, - "sample": metadata.sample, + "statusReason": metadata.status_reason, }, } }, diff --git a/hexa/datasets/tests/fixtures/example_empty_file.csv b/hexa/metadata/__init__.py similarity index 100% rename from hexa/datasets/tests/fixtures/example_empty_file.csv rename to hexa/metadata/__init__.py diff --git a/hexa/metadata/apps.py b/hexa/metadata/apps.py new file mode 100644 index 000000000..2533bc893 --- /dev/null +++ b/hexa/metadata/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class MetadataConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "hexa.metadata" diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql new file mode 100644 index 000000000..937a883b9 --- /dev/null +++ b/hexa/metadata/graphql/schema.graphql @@ -0,0 +1,107 @@ +""" +Interface for type implementing metadata +""" +interface HasMetadata { + extendedId: String! # Encoded concatenation of the class model type and the instance id + metadata: MetadataObject! +} +""" +Generic metadata attribute +""" +type MetadataAttribute { + id: UUID! + key: String! + value: JSON + system: Boolean! +} + +""" +Union of all linked to metadata object types +""" +union LinkedObject = DatasetVersionFile | DatasetVersion | Dataset + +""" +Generic metadata object +""" +type MetadataObject { + id: String! # Encoded concatenation of the class model type and the instance id + object: LinkedObject! + attributes : [MetadataAttribute!]! +} + +""" +Input to add or edit a custom attribute, empty field for value is accepted +""" +input MetadataAttributeInput { + extendedId: String! #Encoded ID of the instance for the linked object + key: String! + value: JSON +} + + +""" +Input to delete custom attribute +""" +input DeleteMetadataAttributeInput { + extendedId: String! #Encoded ID of the instance for the linked object + key: String! +} + +""" +Errors that can occur when creating an attribute. +""" +enum MetadataCreateAttributeError { + PERMISSION_DENIED + MODEL_TYPE_NOT_FOUND + MODEL_NOT_FOUND + DUPLICATE_KEY +} + +""" +Errors that can occur when deleting an attribute. +""" +enum MetadataDeleteAttributeError { + PERMISSION_DENIED + MODEL_TYPE_NOT_FOUND + MODEL_NOT_FOUND + METADATA_OBJECT_NOT_FOUND + METADATA_ATTRIBUTE_NOT_FOUND +} + +""" +Errors that can occur when editing an attribute. +""" +enum MetadataEditAttributeError { + PERMISSION_DENIED + MODEL_TYPE_NOT_FOUND + MODEL_NOT_FOUND + METADATA_OBJECT_NOT_FOUND +} + +type CreateAttributeResult { + success: Boolean! + errors: [MetadataCreateAttributeError!]! +} + +type DeleteAttributeResult { + success: Boolean! + errors: [MetadataDeleteAttributeError!]! +} + +type EditAttributeResult { + success: Boolean! + errors: [MetadataEditAttributeError!]! +} + +extend type Query { + metadata(extendedId: String!): MetadataObject! +} + +extend type Mutation { + "Add a custom attribute to an object instane" + addMetadataToObject(input: MetadataAttributeInput!): CreateAttributeResult! @loginRequired + "Delete an attribute from an object instance" + deleteMetadataFromObject(input: DeleteMetadataAttributeInput!): DeleteAttributeResult! @loginRequired + "Edit metadata attribute for an object instance" + editMetadataForObject(input: MetadataAttributeInput!): EditAttributeResult! @loginRequired +} diff --git a/hexa/metadata/migrations/0001_initial.py b/hexa/metadata/migrations/0001_initial.py new file mode 100644 index 000000000..6af52bf79 --- /dev/null +++ b/hexa/metadata/migrations/0001_initial.py @@ -0,0 +1,53 @@ +# Generated by Django 5.0.8 on 2024-09-09 12:33 + +import uuid + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + initial = True + + dependencies = [ + ("contenttypes", "0002_remove_content_type_name"), + ] + + operations = [ + migrations.CreateModel( + name="MetadataAttribute", + fields=[ + ( + "id", + models.UUIDField( + default=uuid.uuid4, + editable=False, + primary_key=True, + serialize=False, + ), + ), + ("created_at", models.DateTimeField(auto_now_add=True)), + ("updated_at", models.DateTimeField(auto_now=True)), + ("object_id", models.UUIDField(default=uuid.uuid4, editable=False)), + ("key", models.CharField(max_length=255)), + ("value", models.CharField(blank=True, max_length=255, null=True)), + ("system", models.BooleanField(default=False)), + ( + "content_type", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="contenttypes.contenttype", + ), + ), + ], + ), + migrations.AddConstraint( + model_name="metadataattribute", + constraint=models.UniqueConstraint( + fields=("content_type", "object_id", "key"), + name="unique_key_per_data_object", + ), + ), + ] diff --git a/hexa/metadata/migrations/__init__.py b/hexa/metadata/migrations/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py new file mode 100644 index 000000000..a6c6b24cf --- /dev/null +++ b/hexa/metadata/models.py @@ -0,0 +1,143 @@ +import base64 +import re +import uuid + +from django.contrib.contenttypes.fields import GenericForeignKey +from django.contrib.contenttypes.models import ContentType +from django.core.exceptions import PermissionDenied +from django.db import models + +from hexa.core.models.base import Base +from hexa.user_management.models import User + + +class MetadataAttributeManager(models.Manager): + def get_for_instance(self, instance): + content_type = ContentType.objects.get_for_model(instance) + return self.filter(content_type=content_type, object_id=instance.pk) + + +class MetadataAttribute(Base): + content_type = models.ForeignKey( + ContentType, null=True, blank=True, on_delete=models.CASCADE + ) + object_id = models.UUIDField(default=uuid.uuid4, editable=False) + data_object = GenericForeignKey("content_type", "object_id") + + key = models.CharField(max_length=255) + value = models.CharField(max_length=255, null=True, blank=True) + system = models.BooleanField(default=False) + objects = MetadataAttributeManager() + + class Meta: + constraints = [ + models.UniqueConstraint( + fields=["content_type", "object_id", "key"], + name="unique_key_per_data_object", + ) + ] + + def __str__(self): + return f"{self.key}: {self.value}" + + +class MetadataMixin: + """ + Mixin to add metadata functionality to models. + This mixin allows the model to associate key-value metadata attributes. + """ + + @property + def extended_id(self) -> str: + app_label = self._meta.app_label + class_name = self._meta.object_name + return self.encode_base64_id(str(self.id), f"{app_label}.{class_name}") + + @property + def class_name(self): + return re.sub(r"(? str: + combined = f"{id}:{model}" + encoded = base64.b64encode(combined.encode("utf-8")).decode("utf-8") + return encoded + + @staticmethod + def decode_base64_id(encoded_id): + decoded_bytes = base64.b64decode(encoded_id) + decoded_str = decoded_bytes.decode("utf-8") + id, model_type = decoded_str.split(":") + return id, model_type + + def can_view_metadata(self, user: User): + permission = f"{self._meta.app_label}.view_{self.class_name}" + if not user.has_perm(permission, self): + raise PermissionDenied + + def can_update_metadata(self, user: User): + permission = f"{self._meta.app_label}.update_{self.class_name}" + if not user.has_perm(permission, self): + raise PermissionDenied + + def can_delete_metadata(self, user: User): + permission = f"{self._meta.app_label}.delete_{self.class_name}" + if not user.has_perm(permission, self): + raise PermissionDenied + + def add_attribute(self, key, value, system): + content_type = ContentType.objects.get_for_model(self) + created = MetadataAttribute.objects.create( + content_type=content_type, + object_id=self.pk, + key=key, + value=value, + system=system, + ) + return created + + def add_attribute_if_has_permission(self, user, key, value=None, system=False): + self.can_update_metadata(user) + return self.add_attribute(key, value, system) + + def update_attribute(self, key, system, value): + content_type = ContentType.objects.get_for_model(self) + metadata_attr, created = MetadataAttribute.objects.update_or_create( + content_type=content_type, + object_id=self.pk, + key=key, + defaults={ + "value": value, + "system": system, + }, + ) + return metadata_attr + + def update_attribute_if_has_permission(self, user, key, value=None, system=False): + self.can_update_metadata(user) + return self.update_attribute(key, system, value) + + def delete_attribute(self, key): + content_type = ContentType.objects.get_for_model(self) + return MetadataAttribute.objects.filter( + content_type=content_type, object_id=self.pk, key=key + ).delete() + + def delete_attribute_if_has_permission(self, user, key): + self.can_delete_metadata(user) + return self.delete_attribute(key) + + def get_attributes(self, **kwargs): + content_type = ContentType.objects.get_for_model(self) + metadata_attr = MetadataAttribute.objects.filter( + content_type=content_type, + object_id=self.pk, + **kwargs, + ) + return metadata_attr + + def get_attributes_if_has_permission( + self, user: User, **kwargs + ) -> [MetadataAttribute]: + self.can_view_metadata(user) + return self.get_attributes(**kwargs).all() diff --git a/hexa/metadata/permissions.py b/hexa/metadata/permissions.py new file mode 100644 index 000000000..e69de29bb diff --git a/hexa/metadata/schema/__init__.py b/hexa/metadata/schema/__init__.py new file mode 100644 index 000000000..174805486 --- /dev/null +++ b/hexa/metadata/schema/__init__.py @@ -0,0 +1,13 @@ +import pathlib + +from ariadne import load_schema_from_path + +from .mutations import bindables as mutations_bindables +from .queries import bindables as queries_bindables +from .types import bindables as types_bindables + +metadata_type_def = load_schema_from_path( + f"{pathlib.Path(__file__).parent.parent.resolve()}/graphql/schema.graphql" +) + +metadata_bindables = types_bindables + queries_bindables + mutations_bindables diff --git a/hexa/metadata/schema/mutations.py b/hexa/metadata/schema/mutations.py new file mode 100644 index 000000000..7d5efe78e --- /dev/null +++ b/hexa/metadata/schema/mutations.py @@ -0,0 +1,88 @@ +from ariadne import MutationType +from django.contrib.contenttypes.models import ContentType +from django.core.exceptions import PermissionDenied +from django.db import IntegrityError + +from hexa.metadata.schema.utils import get_model_instance + +mutations = MutationType() + + +@mutations.field("addMetadataToObject") +def resolve_add_metadata(_, info, **kwargs): + mutation_input = kwargs["input"] + user = info.context["request"].user + + try: + model_class, model_instance = get_model_instance( + mutation_input.get("extendedId") + ) + + model_instance.add_attribute_if_has_permission( + user=user, + key=mutation_input["key"], + value=mutation_input.get("value", None), + system=False, + ) + + return {"success": True, "errors": []} + + except PermissionDenied: + return {"success": False, "errors": ["PERMISSION_DENIED"]} + except ContentType.DoesNotExist: + return {"success": False, "errors": ["MODEL_TYPE_NOT_FOUND"]} + except IntegrityError: + return {"success": False, "errors": ["DUPLICATE_KEY"]} + except model_class.DoesNotExist: + return {"success": False, "errors": ["MODEL_NOT_FOUND"]} + + +@mutations.field("deleteMetadataFromObject") +def resolve_delete_metadata(_, info, **kwargs): + mutation_input = kwargs["input"] + user = info.context["request"].user + + try: + model_class, model_instance = get_model_instance( + mutation_input.get("extendedId") + ) + + deleted, _ = model_instance.delete_attribute_if_has_permission( + user=user, key=mutation_input["key"] + ) + if deleted > 0: + return {"success": True, "errors": []} + else: + return {"success": False, "errors": ["METADATA_ATTRIBUTE_NOT_FOUND"]} + + except PermissionDenied: + return {"success": False, "errors": ["PERMISSION_DENIED"]} + except ContentType.DoesNotExist: + return {"success": False, "errors": ["MODEL_TYPE_NOT_FOUND"]} + except model_class.DoesNotExist: + return {"success": False, "errors": ["MODEL_NOT_FOUND"]} + + +@mutations.field("editMetadataForObject") +def resolve_edit_metadata(_, info, **kwargs): + mutation_input = kwargs["input"] + user = info.context["request"].user + + try: + model_class, model_instance = get_model_instance( + mutation_input.get("extendedId") + ) + + model_instance.update_attribute_if_has_permission( + user, key=mutation_input["key"], value=mutation_input["value"], system=False + ) + + return {"success": True, "errors": []} + + except PermissionDenied: + return {"success": False, "errors": ["PERMISSION_DENIED"]} + except ContentType.DoesNotExist: + return {"success": False, "errors": ["MODEL_TYPE_NOT_FOUND"]} + + +bindables = [mutations] diff --git a/hexa/metadata/schema/queries.py b/hexa/metadata/schema/queries.py new file mode 100644 index 000000000..1a691a48b --- /dev/null +++ b/hexa/metadata/schema/queries.py @@ -0,0 +1,38 @@ +import logging + +from ariadne import QueryType +from django.contrib.contenttypes.models import ContentType + +from hexa.metadata.schema.utils import get_model_instance + +metadata_queries = QueryType() + + +@metadata_queries.field("metadata") +def resolve_metadata_query(_, info, **kwargs): + request = info.context["request"] + user = request.user + try: + model_class, instance = get_model_instance(kwargs.get("extendedId")) + metadata_attributes = instance.get_attributes_if_has_permission(user) + if not metadata_attributes.exists(): + return { + "id": instance.extended_id, + "object": instance, + "attributes": [], + } + + return { + "id": instance.extended_id, + "object": instance, + "attributes": instance.get_attributes_if_has_permission(user), + } + except ContentType.DoesNotExist: + logging.exception("Content type does not exist") + return None + except model_class.DoesNotExist: + logging.exception("Model does not exist") + return None + + +bindables = [metadata_queries] diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py new file mode 100644 index 000000000..25e93838c --- /dev/null +++ b/hexa/metadata/schema/types.py @@ -0,0 +1,51 @@ +from ariadne import InterfaceType, UnionType +from django.core.exceptions import PermissionDenied + +from hexa.datasets.models import Dataset, DatasetVersion, DatasetVersionFile + +has_metadata = InterfaceType("HasMetadata") +linked_object = UnionType("LinkedObject") + + +@linked_object.type_resolver +def resolve_linked_object_union_type(obj, *_): + """ + Resolver that determines which GraphQL type the linked object is. + """ + if isinstance(obj, Dataset): + return "Dataset" + if isinstance(obj, DatasetVersion): + return "DatasetVersion" + if isinstance(obj, DatasetVersionFile): + return "DatasetVersionFile" + return None + + +@has_metadata.field("metadata") +def resolve_metadata(parent, info): + user = info.context["request"].user + try: + metadata_attributes = parent.get_attributes_if_has_permission(user) + if not metadata_attributes.exists(): + return { + "id": parent.extended_id, + "object": parent, + "attributes": [], + } + + response = { + "id": parent.extended_id, + "object": parent, + "attributes": metadata_attributes, + } + return response + except PermissionDenied: + return None + + +@has_metadata.field("extendedId") +def resolve_extended_id(parent, info): + return parent.extended_id + + +bindables = [has_metadata, linked_object] diff --git a/hexa/metadata/schema/utils.py b/hexa/metadata/schema/utils.py new file mode 100644 index 000000000..d9560fea6 --- /dev/null +++ b/hexa/metadata/schema/utils.py @@ -0,0 +1,17 @@ +from django.contrib.contenttypes.models import ContentType + +from hexa.metadata.models import MetadataMixin + + +def get_model_instance(id: str): + """ + Get a model instance by its id. + """ + instance_id, model_type = MetadataMixin.decode_base64_id(id) + app_label, model = model_type.split(".") + content_type = ContentType.objects.get( + app_label=app_label.lower(), model=model.lower() + ) + model_class = content_type.model_class() + model_instance = model_class.objects.get(id=instance_id) + return model_class, model_instance diff --git a/hexa/metadata/tests/__init__.py b/hexa/metadata/tests/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/hexa/metadata/tests/test_schema.py b/hexa/metadata/tests/test_schema.py new file mode 100644 index 000000000..1d2401216 --- /dev/null +++ b/hexa/metadata/tests/test_schema.py @@ -0,0 +1,436 @@ +from django.contrib.contenttypes.models import ContentType + +from hexa.core.test import GraphQLTestCase +from hexa.datasets.models import DatasetVersionFile +from hexa.metadata.models import MetadataAttribute +from hexa.metadata.tests.testutils import MetadataTestMixin +from hexa.workspaces.models import WorkspaceMembershipRole + + +class MetadataTest(GraphQLTestCase, MetadataTestMixin): + def test_permission_denied_to_view(self): + user = self.create_user(email="superuser@blsq.com", is_superuser=True) + user2 = self.create_user(email="notsu@blsq.com") + workspace = self.create_workspace( + principal=user, name="workspace", description="desc" + ) + dataset = self.create_dataset( + principal=user, description="ds", name="Dataset", workspace=workspace + ) + self.create_dataset_version(principal=user, dataset=dataset) + self.client.force_login(user2) + file = DatasetVersionFile.objects.create( + dataset_version=dataset.latest_version, + uri=dataset.latest_version.get_full_uri("file.csv"), + created_by=user, + ) + file.add_attribute(key="height", value="188cm", system=False) + r_before = self.run_query( + self.queries["get_metadata_for_file"], {"id": str(file.id)} + ) + self.assertEqual(r_before["data"], {"datasetVersionFile": None}) + + def test_adding_metadata_to_file(self): + user = self.create_user(email="superuser@blsq.com", is_superuser=True) + user2 = self.create_user(email="notsu@blsq.com") + workspace = self.create_workspace( + principal=user, name="workspace", description="desc" + ) + self.join_workspace(user2, workspace, WorkspaceMembershipRole.EDITOR) + dataset = self.create_dataset( + principal=user2, description="ds", name="Dataset", workspace=workspace + ) + self.create_dataset_version(principal=user2, dataset=dataset) + self.client.force_login(user2) + file = DatasetVersionFile.objects.create( + dataset_version=dataset.latest_version, + uri=dataset.latest_version.get_full_uri("file.csv"), + created_by=user, + ) + + r_before = self.run_query( + self.queries["get_metadata_for_file"], {"id": str(file.id)} + ) + + self.assertEqual( + r_before["data"], + { + "datasetVersionFile": { + "filename": "file.csv", + "metadata": { + "id": file.extended_id, + "attributes": [], + "object": { + "__typename": "DatasetVersionFile", + "id": str(file.id), + "uri": str(file.uri), + }, + }, + } + }, + ) + r_add = self.run_query( + self.queries["add_metadata_attribute"], + { + "input": { + "extendedId": file.extended_id, + "key": "descriptions", + "value": "test", + } + }, + ) + self.assertEqual( + r_add["data"], {"addMetadataToObject": {"success": True, "errors": []}} + ) + + r_after = self.run_query( + self.queries["get_metadata_for_file"], {"id": str(file.id)} + ) + self.assertEqual( + r_after["data"], + { + "datasetVersionFile": { + "filename": "file.csv", + "metadata": { + "id": file.extended_id, + "object": { + "__typename": "DatasetVersionFile", + "id": str(file.id), + "uri": str(file.uri), + }, + "attributes": [ + {"key": "descriptions", "value": "test", "system": False} + ], + }, + } + }, + ) + + def test_delete_metadata_from_file(self): + user = self.create_user(email="superuser@blsq.com", is_superuser=True) + user2 = self.create_user(email="notsu@blsq.com") + workspace = self.create_workspace( + principal=user, name="workspace", description="desc" + ) + self.join_workspace(user2, workspace, WorkspaceMembershipRole.EDITOR) + dataset = self.create_dataset( + principal=user, description="ds", name="Dataset", workspace=workspace + ) + self.create_dataset_version(principal=user, dataset=dataset) + self.client.force_login(user) + file = DatasetVersionFile.objects.create( + dataset_version=dataset.latest_version, + uri=dataset.latest_version.get_full_uri("file.csv"), + created_by=user, + ) + + metadataAttribute = MetadataAttribute.objects.create( + key="key1", + value="value1", + system=True, + content_type=ContentType.objects.get_for_model(DatasetVersionFile), + object_id=file.id, + ) + r_before = self.run_query( + self.queries["get_metadata_for_file"], {"id": str(file.id)} + ) + self.assertEqual( + r_before["data"], + { + "datasetVersionFile": { + "filename": "file.csv", + "metadata": { + "id": file.extended_id, + "object": { + "__typename": "DatasetVersionFile", + "id": str(file.id), + "uri": str(file.uri), + }, + "attributes": [ + {"key": "key1", "value": "value1", "system": True} + ], + }, + } + }, + ) + r_delete = self.run_query( + self.queries["delete_metadata_attribute"], + { + "input": { + "extendedId": file.extended_id, + "key": metadataAttribute.key, + } + }, + ) + self.assertEqual( + r_delete["data"], + {"deleteMetadataFromObject": {"success": True, "errors": []}}, + ) + r_after = self.run_query( + self.queries["get_metadata_for_file"], {"id": str(file.id)} + ) + self.assertEqual( + r_after["data"], + { + "datasetVersionFile": { + "filename": "file.csv", + "metadata": { + "id": file.extended_id, + "object": { + "__typename": "DatasetVersionFile", + "id": str(file.id), + "uri": str(file.uri), + }, + "attributes": [], + }, + } + }, + ) + + def test_edit_metadata_on_file(self): + user = self.create_user(email="superuser@blsq.com", is_superuser=True) + user2 = self.create_user(email="notsu@blsq.com") + workspace = self.create_workspace( + principal=user, name="workspace", description="desc" + ) + self.join_workspace(user2, workspace, WorkspaceMembershipRole.EDITOR) + dataset = self.create_dataset( + principal=user, description="ds", name="Dataset", workspace=workspace + ) + self.create_dataset_version(principal=user, dataset=dataset) + self.client.force_login(user) + file = DatasetVersionFile.objects.create( + dataset_version=dataset.latest_version, + uri=dataset.latest_version.get_full_uri("file.csv"), + created_by=user, + ) + metadataAttribute = MetadataAttribute.objects.create( + key="key1", + value="originalValue", + system=True, + content_type=ContentType.objects.get_for_model(DatasetVersionFile), + object_id=file.id, + ) + + r_before = self.run_query( + self.queries["get_metadata_for_file"], {"id": str(file.id)} + ) + self.assertEqual( + r_before["data"], + { + "datasetVersionFile": { + "filename": "file.csv", + "metadata": { + "id": file.extended_id, + "object": { + "__typename": "DatasetVersionFile", + "id": str(file.id), + "uri": str(file.uri), + }, + "attributes": [ + { + "key": metadataAttribute.key, + "value": metadataAttribute.value, + "system": metadataAttribute.system, + } + ], + }, + } + }, + ) + r_edit = self.run_query( + self.queries["edit_metadata_attribute"], + { + "input": { + "extendedId": file.extended_id, + "key": metadataAttribute.key, + "value": "anotherValue", + } + }, + ) + self.assertEqual( + r_edit["data"], {"editMetadataForObject": {"success": True, "errors": []}} + ) + r_after = self.run_query( + self.queries["get_metadata_for_file"], {"id": str(file.id)} + ) + self.assertEqual( + r_after["data"], + { + "datasetVersionFile": { + "filename": "file.csv", + "metadata": { + "id": file.extended_id, + "object": { + "__typename": "DatasetVersionFile", + "id": str(file.id), + "uri": str(file.uri), + }, + "attributes": [ + { + "key": metadataAttribute.key, + "value": "anotherValue", + "system": False, + } + ], + }, + } + }, + ) + + def test_adding_metadata_to_dataset(self): + user = self.create_user(email="superuser@blsq.com", is_superuser=True) + user2 = self.create_user(email="notsu@blsq.com") + workspace = self.create_workspace( + principal=user, name="workspace", description="desc" + ) + self.join_workspace(user2, workspace, WorkspaceMembershipRole.EDITOR) + dataset = self.create_dataset( + principal=user, description="ds", name="Dataset", workspace=workspace + ) + self.create_dataset_version(principal=user, dataset=dataset) + self.client.force_login(user) + + r_before = self.run_query( + self.queries["get_metadata_for_dataset"], {"id": str(dataset.id)} + ) + self.assertEqual( + r_before["data"], + { + "dataset": { + "id": str(dataset.id), + "extendedId": dataset.extended_id, + "metadata": { + "id": dataset.extended_id, + "attributes": [], + "object": { + "__typename": "Dataset", + "id": str(dataset.id), + "name": "Dataset", + }, + }, + } + }, + ) + + r_add = self.run_query( + self.queries["add_metadata_attribute"], + { + "input": { + "extendedId": dataset.extended_id, + "key": "descriptions", + "value": "test", + } + }, + ) + self.assertEqual( + r_add["data"], {"addMetadataToObject": {"success": True, "errors": []}} + ) + + r_after = self.run_query( + self.queries["get_metadata_for_dataset"], {"id": str(dataset.id)} + ) + self.assertEqual( + r_after["data"], + { + "dataset": { + "id": str(dataset.id), + "extendedId": dataset.extended_id, + "metadata": { + "id": dataset.extended_id, + "object": { + "__typename": "Dataset", + "id": str(dataset.id), + "name": dataset.name, + }, + "attributes": [ + {"key": "descriptions", "value": "test", "system": False} + ], + }, + } + }, + ) + + queries = { + "get_metadata_for_file": """ + query GetObjectMetadata($id: ID!) { + datasetVersionFile(id: $id) { + filename + metadata + { + id + object{ + __typename + ... on DatasetVersionFile { + id + uri + } + ... on Dataset { + id + name + } + ... on DatasetVersion { + id + } + } + attributes { + key, value, system + } + } + } + } + """, + "get_metadata_for_dataset": """ + query GetObjectMetadata($id: ID!) { + dataset(id: $id) { + id + extendedId + metadata + { + id + object{ + __typename + ... on DatasetVersionFile { + id + uri + } + ... on Dataset { + id + name + } + ... on DatasetVersion { + id + } + } + attributes { + key, value, system + } + } + } + } + """, + "add_metadata_attribute": """ + mutation AddMetadataToFile($input: MetadataAttributeInput!){ + addMetadataToObject(input: $input) { + success + errors + } + } + """, + "delete_metadata_attribute": """ + mutation DeleteMetadataFromFile($input: DeleteMetadataAttributeInput!){ + deleteMetadataFromObject(input: $input) { + success + errors + } + } + """, + "edit_metadata_attribute": """ + mutation editMetadataOnFile($input: MetadataAttributeInput!){ + editMetadataForObject(input: $input) { + success + errors + } + } + """, + } diff --git a/hexa/metadata/tests/testutils.py b/hexa/metadata/tests/testutils.py new file mode 100644 index 000000000..1b55707c1 --- /dev/null +++ b/hexa/metadata/tests/testutils.py @@ -0,0 +1,64 @@ +from hexa.datasets.models import Dataset, DatasetVersion +from hexa.files.tests.mocks.mockgcp import mock_gcp_storage +from hexa.user_management.models import Feature, FeatureFlag, User +from hexa.workspaces.models import ( + Workspace, + WorkspaceMembership, + WorkspaceMembershipRole, +) + + +class MetadataTestMixin: + def create_user(self, email, *args, password=None, **kwargs): + password = password or "Pa$$w0rd" + user = User.objects.create_user(email, *args, password=password, **kwargs) + feature, _ = Feature.objects.get_or_create(code="workspaces") + FeatureFlag.objects.create(feature=feature, user=user) + return user + + @staticmethod + def create_feature_flag(*, code: str, user: User): + feature, _ = Feature.objects.get_or_create(code=code) + FeatureFlag.objects.create(feature=feature, user=user) + + @mock_gcp_storage + def create_workspace(self, principal: User, name, description, *args, **kwargs): + workspace = Workspace.objects.create_if_has_perm( + principal=principal, name=name, description=description, *args, **kwargs + ) + return workspace + + def join_workspace( + self, user: User, workspace: Workspace, role: WorkspaceMembershipRole + ): + membership, created = WorkspaceMembership.objects.get_or_create( + workspace=workspace, user=user, defaults={"role": role} + ) + if not created: + membership.role = role + return membership + + def create_dataset( + self, principal: User, workspace: Workspace, name, description, *args, **kwargs + ): + dataset = Dataset.objects.create_if_has_perm( + principal=principal, + workspace=workspace, + name=name, + description=description, + *args, + **kwargs, + ) + return dataset + + @staticmethod + def create_dataset_version( + principal: User, *, dataset: Dataset, name="v1", description=None, **kwargs + ) -> DatasetVersion: + return DatasetVersion.objects.create_if_has_perm( + principal=principal, + dataset=dataset, + name=name, + description=description, + **kwargs, + ) diff --git a/requirements.in b/requirements.in index 5853c4400..28b6f34e1 100644 --- a/requirements.in +++ b/requirements.in @@ -63,4 +63,7 @@ ua-parser # dataset explorer pyarrow -openpyxl \ No newline at end of file +openpyxl + +# +regex diff --git a/requirements.txt b/requirements.txt index 8bda143c5..fae3fb763 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # -# This file is autogenerated by pip-compile with Python 3.12 +# This file is autogenerated by pip-compile with Python 3.9 # by the following command: # # pip-compile --no-emit-index-url --output-file=requirements.txt requirements.in @@ -75,7 +75,7 @@ deprecated==1.2.14 # via opentelemetry-api dhis2-py==2.3.0 # via -r requirements.in -django==5.0.8 +django==4.2.16 # via # -r requirements.in # ariadne-django @@ -106,6 +106,8 @@ docker==7.1.0 # via -r requirements.in et-xmlfile==1.1.0 # via openpyxl +exceptiongroup==1.2.2 + # via anyio geopandas==1.0.1 # via -r requirements.in google-api-core[grpc]==2.19.1 @@ -172,7 +174,11 @@ idna==3.7 # anyio # requests importlib-metadata==8.0.0 - # via opentelemetry-api + # via + # build + # markdown + # opentelemetry-api + # rasterio jinja2==3.1.4 # via moto jmespath==1.0.1 @@ -297,6 +303,8 @@ rasterio==1.3.10 # via # -r requirements.in # rio-cogeo +regex==2024.7.24 + # via -r requirements.in requests==2.32.3 # via # -r requirements.in @@ -347,19 +355,27 @@ tblib==3.0.0 # via -r requirements.in text-unidecode==1.3 # via python-slugify +tomli==2.0.1 + # via + # build + # coverage + # pip-tools tqdm==4.66.5 # via -r requirements.in typing-extensions==4.12.2 # via + # anyio # ariadne + # asgiref # django-countries # pydantic # pydantic-core + # starlette tzdata==2024.1 # via pandas ua-parser==0.18.0 # via -r requirements.in -urllib3==2.2.2 +urllib3==1.26.20 # via # botocore # docker From 17e6bf1cba8d279a0190041ba4a7050d6f7b1aa1 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Fri, 20 Sep 2024 13:33:55 +0200 Subject: [PATCH 02/28] fix: migration --- ...tfilesample_delete_datasetfilemetadata.py} | 6 +- hexa/datasets/queue.py | 13 ++- .../tests/fixtures/example_empty_file.csv | 0 ...st_metadata.py => test_generate_sample.py} | 18 +-- hexa/datasets/tests/test_sample_extraction.py | 107 ------------------ hexa/datasets/tests/test_schema.py | 1 + 6 files changed, 21 insertions(+), 124 deletions(-) rename hexa/datasets/migrations/{0008_datasetfilesample_delete_datasetfilemetadata.py => 0009_datasetfilesample_delete_datasetfilemetadata.py} (91%) create mode 100644 hexa/datasets/tests/fixtures/example_empty_file.csv rename hexa/datasets/tests/{test_metadata.py => test_generate_sample.py} (88%) delete mode 100644 hexa/datasets/tests/test_sample_extraction.py diff --git a/hexa/datasets/migrations/0008_datasetfilesample_delete_datasetfilemetadata.py b/hexa/datasets/migrations/0009_datasetfilesample_delete_datasetfilemetadata.py similarity index 91% rename from hexa/datasets/migrations/0008_datasetfilesample_delete_datasetfilemetadata.py rename to hexa/datasets/migrations/0009_datasetfilesample_delete_datasetfilemetadata.py index 274edf787..b8e515452 100644 --- a/hexa/datasets/migrations/0008_datasetfilesample_delete_datasetfilemetadata.py +++ b/hexa/datasets/migrations/0009_datasetfilesample_delete_datasetfilemetadata.py @@ -1,4 +1,4 @@ -# Generated by Django 4.2.16 on 2024-09-12 09:37 +# Generated by Django 4.2.16 on 2024-09-20 11:33 import uuid @@ -8,7 +8,7 @@ class Migration(migrations.Migration): dependencies = [ - ("datasets", "0007_alter_dataset_slug_and_more"), + ("datasets", "0008_alter_datasetfilemetadata_options"), ] operations = [ @@ -50,7 +50,7 @@ class Migration(migrations.Migration): ), ], options={ - "abstract": False, + "ordering": ["-created_at"], }, ), migrations.DeleteModel( diff --git a/hexa/datasets/queue.py b/hexa/datasets/queue.py index 8860fd7d7..98153b4f1 100644 --- a/hexa/datasets/queue.py +++ b/hexa/datasets/queue.py @@ -57,7 +57,9 @@ def get_df(dataset_version_file: DatasetVersionFile) -> pd.DataFrame: raise ValueError(f"Unsupported file format: {dataset_version_file.filename}") -def generate_sample(version_file: DatasetVersionFile, previous_version_id : str) -> DatasetFileSample: +def generate_sample( + version_file: DatasetVersionFile, previous_version_id: str | None +) -> DatasetFileSample: if not is_sample_supported(version_file.filename): raise ValueError(f"Unsupported file format: {version_file.filename}") @@ -78,9 +80,7 @@ def generate_sample(version_file: DatasetVersionFile, previous_version_id : str) replace=True, ) dataset_file_sample.sample = sample.to_dict(orient="records") - add_system_attributes( - version_file, df, previous_version_file - ) + add_system_attributes(version_file, df, previous_version_file) dataset_file_sample.status = DatasetFileSample.STATUS_FINISHED logger.info(f"Sample saved for file {version_file.id}") except Exception as e: @@ -100,6 +100,7 @@ def dataframe_to_sample(data: pd.DataFrame): replace=True, ) + def calculate_profiling_per_column(dataframe: pd.DataFrame) -> list: logger.info("Calculating profiling per column") for col in dataframe.select_dtypes(include=["object"]).columns: @@ -141,6 +142,7 @@ def file_from_previous_version( return file return None + def add_system_attributes( version_file: DatasetVersionFile, file_content: pd.DataFrame, @@ -181,7 +183,8 @@ class DatasetsFileMetadataQueue(AtLeastOnceQueue): dataset_file_metadata_queue = DatasetsFileMetadataQueue( tasks={ "generate_file_metadata": lambda _, job: generate_sample( - DatasetVersionFile.objects.get(id=job.args["file_id"]) + DatasetVersionFile.objects.get(id=job.args["file_id"]), + job.args["previous_version_id"], ), }, notify_channel="dataset_file_metadata_queue", diff --git a/hexa/datasets/tests/fixtures/example_empty_file.csv b/hexa/datasets/tests/fixtures/example_empty_file.csv new file mode 100644 index 000000000..e69de29bb diff --git a/hexa/datasets/tests/test_metadata.py b/hexa/datasets/tests/test_generate_sample.py similarity index 88% rename from hexa/datasets/tests/test_metadata.py rename to hexa/datasets/tests/test_generate_sample.py index 3228762d3..53f8935ad 100644 --- a/hexa/datasets/tests/test_metadata.py +++ b/hexa/datasets/tests/test_generate_sample.py @@ -4,14 +4,14 @@ from django.test import override_settings from hexa.core.test import TestCase -from hexa.datasets.models import Dataset, DatasetFileMetadata, DatasetVersionFile +from hexa.datasets.models import Dataset, DatasetFileSample, DatasetVersionFile from hexa.datasets.queue import generate_sample from hexa.files import storage from hexa.user_management.models import User from hexa.workspaces.models import Workspace -class TestCreateDatasetFileMetadataTask(TestCase): +class TestCreateDatasetFileSampleTask(TestCase): @classmethod def setUpTestData(cls): storage.reset() @@ -40,13 +40,13 @@ def test_generate_sample( # It fails because the file is empty (no columns to parse) ( "example_empty_file.csv", - DatasetFileMetadata.STATUS_FAILED, + DatasetFileSample.STATUS_FAILED, [], "No columns to parse from file", ), ( "example_names.csv", - DatasetFileMetadata.STATUS_FINISHED, + DatasetFileSample.STATUS_FINISHED, [ {"name": "Jack", "surname": "Howard"}, {"name": "Olivia", "surname": "Brown"}, @@ -57,7 +57,7 @@ def test_generate_sample( # The CSV only contains 2 lines so it's going to add existing lines to achieve the desired sample size ( "example_names_2_lines.csv", - DatasetFileMetadata.STATUS_FINISHED, + DatasetFileSample.STATUS_FINISHED, [ {"name": "Liam", "surname": "Smith"}, {"name": "Joe", "surname": "Doe"}, @@ -67,13 +67,13 @@ def test_generate_sample( ), ( "example_names_0_lines.csv", - DatasetFileMetadata.STATUS_FINISHED, + DatasetFileSample.STATUS_FINISHED, [], None, ), ( "example_names.parquet", - DatasetFileMetadata.STATUS_FINISHED, + DatasetFileSample.STATUS_FINISHED, [ {"name": "Jack", "surname": "Howard"}, {"name": "Olivia", "surname": "Brown"}, @@ -83,7 +83,7 @@ def test_generate_sample( ), ( "example_names.xlsx", - DatasetFileMetadata.STATUS_FINISHED, + DatasetFileSample.STATUS_FINISHED, [ {"name": "Jack", "surname": "Howard"}, {"name": "Olivia", "surname": "Brown"}, @@ -113,7 +113,7 @@ def test_generate_sample( "hexa.datasets.queue.generate_download_url" ) as mock_generate_download_url: mock_generate_download_url.return_value = fixture_file_path - sample_entry = generate_sample(version_file) + sample_entry = generate_sample(version_file, None) self.assertEqual(sample_entry.status, expected_status) self.assertEqual(sample_entry.sample, expected_sample) diff --git a/hexa/datasets/tests/test_sample_extraction.py b/hexa/datasets/tests/test_sample_extraction.py deleted file mode 100644 index d04953c3f..000000000 --- a/hexa/datasets/tests/test_sample_extraction.py +++ /dev/null @@ -1,107 +0,0 @@ -import json -import os -from unittest import mock - -import pandas as pd - -from hexa.core.test import TestCase -from hexa.datasets.queue import ( - calculate_profiling_per_column, - dataframe_to_sample, - download_file_as_dataframe, - is_supported_mimetype, -) - - -class TestCreateDatasetFileSample(TestCase): - @mock.patch("hexa.datasets.queue.generate_download_url") - def test_generate_file_metadata_task_success( - self, - mock_generate_download_url, - ): - test_cases = [ - ( - "example_names.csv", - '[{"name":"Jack","surname":"Howard"},{"name":"Olivia","surname":"Brown"}]', - ), - ( - "example_names_2_lines.csv", - '[{"name":"Liam","surname":"Smith"},{"name":"Joe","surname":"Doe"}]', - ), - ( - "example_names.parquet", - '[{"name":"Jack","surname":"Howard"},{"name":"Olivia","surname":"Brown"}]', - ), - ( - "example_names.xlsx", - '[{"name":"Jack","surname":"Howard"},{"name":"Olivia","surname":"Brown"}]', - ), - ] - for filename, expected_content in test_cases: - with self.subTest(filename=filename): - # Mock out the dependencies used in generate_file_metadata_task method we try to test - mock_dataset_version_file = mock.Mock(id=1, filename=filename) - - # Path to mocked fixture to test - fixture_file_path = os.path.join( - os.path.dirname(__file__), f"./fixtures/{filename}" - ) - mock_generate_download_url.return_value = fixture_file_path - - # Test sample generation - self.assertTrue(is_supported_mimetype(filename)) - dataframe = download_file_as_dataframe( - dataset_version_file=mock_dataset_version_file - ) - self.assertIsNotNone(dataframe) - sample_slice = ( - dataframe_to_sample(dataframe).iloc[:2, :].reset_index(drop=True) - ) - - # Assert result with expected fixture - expected = pd.DataFrame(json.loads(expected_content)) - self.assertTrue(sample_slice.equals(expected)) - - # reset mocks for each case run - mock_generate_download_url.assert_called_once_with( - mock_dataset_version_file - ) - mock_generate_download_url.reset_mock() - - @mock.patch("hexa.datasets.queue.generate_download_url") - def test_automated_profiling_generation( - self, - mock_generate_download_url, - ): - filenames = ["example_names_with_age.csv", "senegal_rural_raw.csv"] - for filename in filenames: - # Mock out the dependencies used in generate_file_metadata_task method we try to test - mock_dataset_version_file = mock.Mock(id=1, filename=filename) - - # Path to mocked fixture to test - fixture_file_path = os.path.join( - os.path.dirname(__file__), f"./fixtures/{filename}" - ) - mock_generate_download_url.return_value = fixture_file_path - - # Test sample generation - self.assertTrue(is_supported_mimetype(filename)) - dataframe = download_file_as_dataframe( - dataset_version_file=mock_dataset_version_file - ) - profiling = calculate_profiling_per_column(dataframe) - - # Assert result with expected fixture - expected_profiling = pd.read_csv( - fixture_file_path.replace(".csv", "_profiling.csv") - ).sort_index(axis=1) - comparison = expected_profiling.compare( - pd.DataFrame(profiling).sort_index(axis=1) - ) - self.assertTrue(comparison.empty) - - # reset mocks for each case run - mock_generate_download_url.assert_called_once_with( - mock_dataset_version_file - ) - mock_generate_download_url.reset_mock() diff --git a/hexa/datasets/tests/test_schema.py b/hexa/datasets/tests/test_schema.py index fed09db4c..cc8d0f6aa 100644 --- a/hexa/datasets/tests/test_schema.py +++ b/hexa/datasets/tests/test_schema.py @@ -505,6 +505,7 @@ def test_get_file_metadata(self): """, {"id": str(file.id)}, ) + print(r) self.assertEqual( { "datasetVersionFile": { From d7bc0c70fa22f007e13254ba4c399764e98b7e9e Mon Sep 17 00:00:00 2001 From: nazarfil Date: Fri, 20 Sep 2024 14:30:08 +0200 Subject: [PATCH 03/28] fix: tests --- hexa/datasets/models.py | 2 +- hexa/datasets/queue.py | 2 ++ hexa/datasets/schema/types.py | 4 ++-- hexa/datasets/tests/fixtures/example_names_0_lines.csv | 1 + hexa/datasets/tests/test_schema.py | 1 - 5 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 hexa/datasets/tests/fixtures/example_names_0_lines.csv diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index 34e7e1e6a..5f1f6454c 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -281,7 +281,7 @@ def filename(self): @property def sample_entry(self): - entry = self.metadata_entries.first() + entry = self.samples.first() if entry is None: logger.info("No sample found for file %s, generating one", self.uri) self.generate_sample() diff --git a/hexa/datasets/queue.py b/hexa/datasets/queue.py index 98153b4f1..dacfcd84b 100644 --- a/hexa/datasets/queue.py +++ b/hexa/datasets/queue.py @@ -81,6 +81,8 @@ def generate_sample( ) dataset_file_sample.sample = sample.to_dict(orient="records") add_system_attributes(version_file, df, previous_version_file) + else: + dataframe_to_sample.sample = [] dataset_file_sample.status = DatasetFileSample.STATUS_FINISHED logger.info(f"Sample saved for file {version_file.id}") except Exception as e: diff --git a/hexa/datasets/schema/types.py b/hexa/datasets/schema/types.py index e1d1f9550..91ed1bdce 100644 --- a/hexa/datasets/schema/types.py +++ b/hexa/datasets/schema/types.py @@ -222,9 +222,9 @@ def resolve_upload_url(obj, info, **kwargs): @dataset_version_file_object.field("fileSample") def resolve_version_file_metadata(obj: DatasetVersionFile, info, **kwargs): try: - return obj.latest_sample + return obj.sample_entry except DatasetFileSample.DoesNotExist: - logging.error(f"No metadata found for file {obj.filename} with id {obj.id}") + logging.error(f"No sample found for file {obj.filename} with id {obj.id}") return None diff --git a/hexa/datasets/tests/fixtures/example_names_0_lines.csv b/hexa/datasets/tests/fixtures/example_names_0_lines.csv new file mode 100644 index 000000000..5c7077c0c --- /dev/null +++ b/hexa/datasets/tests/fixtures/example_names_0_lines.csv @@ -0,0 +1 @@ +name,surname \ No newline at end of file diff --git a/hexa/datasets/tests/test_schema.py b/hexa/datasets/tests/test_schema.py index cc8d0f6aa..fed09db4c 100644 --- a/hexa/datasets/tests/test_schema.py +++ b/hexa/datasets/tests/test_schema.py @@ -505,7 +505,6 @@ def test_get_file_metadata(self): """, {"id": str(file.id)}, ) - print(r) self.assertEqual( { "datasetVersionFile": { From 73a0907b00daf0ffcf1cc3f2c3b00112ec52a154 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Fri, 20 Sep 2024 15:03:18 +0200 Subject: [PATCH 04/28] fix: metadata generation --- hexa/datasets/models.py | 4 ++++ hexa/metadata/tests/testutils.py | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index 5f1f6454c..5db373d14 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -298,10 +298,14 @@ def generate_sample(self): logger.info("Sample generation not supported for file %s", self.uri) return logger.info("Generating sample for file %s", self.uri) + dataset_file_metadata_queue.enqueue( "generate_file_metadata", { "file_id": str(self.id), + "previous_version_id": str( + self.dataset_version.dataset.previous_version + ), }, ) diff --git a/hexa/metadata/tests/testutils.py b/hexa/metadata/tests/testutils.py index 1b55707c1..aee30d0be 100644 --- a/hexa/metadata/tests/testutils.py +++ b/hexa/metadata/tests/testutils.py @@ -1,5 +1,4 @@ from hexa.datasets.models import Dataset, DatasetVersion -from hexa.files.tests.mocks.mockgcp import mock_gcp_storage from hexa.user_management.models import Feature, FeatureFlag, User from hexa.workspaces.models import ( Workspace, @@ -21,7 +20,6 @@ def create_feature_flag(*, code: str, user: User): feature, _ = Feature.objects.get_or_create(code=code) FeatureFlag.objects.create(feature=feature, user=user) - @mock_gcp_storage def create_workspace(self, principal: User, name, description, *args, **kwargs): workspace = Workspace.objects.create_if_has_perm( principal=principal, name=name, description=description, *args, **kwargs From e0c52b2c724ae110f0bfeca2ed9d0b75a44429a1 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Tue, 24 Sep 2024 18:20:56 +0200 Subject: [PATCH 05/28] fix: removed linked object --- hexa/datasets/graphql/schema.graphql | 12 ++++----- hexa/metadata/graphql/schema.graphql | 27 +++++-------------- hexa/metadata/models.py | 6 ++--- hexa/metadata/schema/mutations.py | 6 ++--- hexa/metadata/schema/queries.py | 15 +++-------- hexa/metadata/schema/types.py | 40 +++++----------------------- hexa/metadata/tests/test_schema.py | 14 +++++----- 7 files changed, 36 insertions(+), 84 deletions(-) diff --git a/hexa/datasets/graphql/schema.graphql b/hexa/datasets/graphql/schema.graphql index 055ae6c92..94976b19e 100644 --- a/hexa/datasets/graphql/schema.graphql +++ b/hexa/datasets/graphql/schema.graphql @@ -2,7 +2,7 @@ """ Dataset is a collection of files that are related to each other and are versioned. """ -type Dataset implements HasMetadata{ +type Dataset implements MetadataObject{ id: ID! slug: String! name: String! @@ -16,7 +16,7 @@ type Dataset implements HasMetadata{ version(id: ID!): DatasetVersion latestVersion: DatasetVersion links(page: Int = 1, perPage: Int = 15): DatasetLinkPage! - metadata: MetadataObject! + attributes : [MetadataAttribute!]! extendedId: String! } @@ -36,7 +36,7 @@ type DatasetPermissions { A version of a dataset. A version is a snapshot of the dataset at a point in time. """ -type DatasetVersion implements HasMetadata{ +type DatasetVersion implements MetadataObject{ id: ID! name: String! description: String @@ -46,7 +46,7 @@ type DatasetVersion implements HasMetadata{ permissions: DatasetVersionPermissions! fileByName(name: String!): DatasetVersionFile files(page: Int = 1, perPage: Int = 15): DatasetVersionFilePage! - metadata: MetadataObject! + attributes : [MetadataAttribute!]! extendedId: String! } @@ -116,7 +116,7 @@ type DatasetFileSample { """ A file in a dataset version. """ -type DatasetVersionFile implements HasMetadata{ +type DatasetVersionFile implements MetadataObject{ id: ID! uri: String! filename: String! @@ -124,7 +124,7 @@ type DatasetVersionFile implements HasMetadata{ createdBy: User contentType: String! fileSample: DatasetFileSample - metadata: MetadataObject! + attributes : [MetadataAttribute!]! extendedId: String! } diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql index 937a883b9..1c135ae6a 100644 --- a/hexa/metadata/graphql/schema.graphql +++ b/hexa/metadata/graphql/schema.graphql @@ -1,10 +1,11 @@ """ Interface for type implementing metadata """ -interface HasMetadata { +interface MetadataObject { extendedId: String! # Encoded concatenation of the class model type and the instance id - metadata: MetadataObject! + attributes : [MetadataAttribute!]! } + """ Generic metadata attribute """ @@ -15,20 +16,6 @@ type MetadataAttribute { system: Boolean! } -""" -Union of all linked to metadata object types -""" -union LinkedObject = DatasetVersionFile | DatasetVersion | Dataset - -""" -Generic metadata object -""" -type MetadataObject { - id: String! # Encoded concatenation of the class model type and the instance id - object: LinkedObject! - attributes : [MetadataAttribute!]! -} - """ Input to add or edit a custom attribute, empty field for value is accepted """ @@ -94,14 +81,14 @@ type EditAttributeResult { } extend type Query { - metadata(extendedId: String!): MetadataObject! + metadataAttributes(extendedId: String!): [MetadataAttribute]! } extend type Mutation { "Add a custom attribute to an object instane" - addMetadataToObject(input: MetadataAttributeInput!): CreateAttributeResult! @loginRequired + addMetadata(input: MetadataAttributeInput!): CreateAttributeResult! @loginRequired "Delete an attribute from an object instance" - deleteMetadataFromObject(input: DeleteMetadataAttributeInput!): DeleteAttributeResult! @loginRequired + deleteMetadata(input: DeleteMetadataAttributeInput!): DeleteAttributeResult! @loginRequired "Edit metadata attribute for an object instance" - editMetadataForObject(input: MetadataAttributeInput!): EditAttributeResult! @loginRequired + editMetadata(input: MetadataAttributeInput!): EditAttributeResult! @loginRequired } diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index a6c6b24cf..998f9e914 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -38,7 +38,7 @@ class Meta: ] def __str__(self): - return f"{self.key}: {self.value}" + return f"" class MetadataMixin: @@ -119,7 +119,7 @@ def update_attribute_if_has_permission(self, user, key, value=None, system=False def delete_attribute(self, key): content_type = ContentType.objects.get_for_model(self) - return MetadataAttribute.objects.filter( + return self.objects.filter( content_type=content_type, object_id=self.pk, key=key ).delete() @@ -129,7 +129,7 @@ def delete_attribute_if_has_permission(self, user, key): def get_attributes(self, **kwargs): content_type = ContentType.objects.get_for_model(self) - metadata_attr = MetadataAttribute.objects.filter( + metadata_attr = self.objects.filter( content_type=content_type, object_id=self.pk, **kwargs, diff --git a/hexa/metadata/schema/mutations.py b/hexa/metadata/schema/mutations.py index 7d5efe78e..31dcb77b3 100644 --- a/hexa/metadata/schema/mutations.py +++ b/hexa/metadata/schema/mutations.py @@ -8,7 +8,7 @@ mutations = MutationType() -@mutations.field("addMetadataToObject") +@mutations.field("addMetadata") def resolve_add_metadata(_, info, **kwargs): mutation_input = kwargs["input"] user = info.context["request"].user @@ -37,7 +37,7 @@ def resolve_add_metadata(_, info, **kwargs): return {"success": False, "errors": ["MODEL_NOT_FOUND"]} -@mutations.field("deleteMetadataFromObject") +@mutations.field("deleteMetadata") def resolve_delete_metadata(_, info, **kwargs): mutation_input = kwargs["input"] user = info.context["request"].user @@ -63,7 +63,7 @@ def resolve_delete_metadata(_, info, **kwargs): return {"success": False, "errors": ["MODEL_NOT_FOUND"]} -@mutations.field("editMetadataForObject") +@mutations.field("editMetadata") def resolve_edit_metadata(_, info, **kwargs): mutation_input = kwargs["input"] user = info.context["request"].user diff --git a/hexa/metadata/schema/queries.py b/hexa/metadata/schema/queries.py index 1a691a48b..0771c0c09 100644 --- a/hexa/metadata/schema/queries.py +++ b/hexa/metadata/schema/queries.py @@ -8,7 +8,7 @@ metadata_queries = QueryType() -@metadata_queries.field("metadata") +@metadata_queries.field("metadataAttributes") def resolve_metadata_query(_, info, **kwargs): request = info.context["request"] user = request.user @@ -16,17 +16,8 @@ def resolve_metadata_query(_, info, **kwargs): model_class, instance = get_model_instance(kwargs.get("extendedId")) metadata_attributes = instance.get_attributes_if_has_permission(user) if not metadata_attributes.exists(): - return { - "id": instance.extended_id, - "object": instance, - "attributes": [], - } - - return { - "id": instance.extended_id, - "object": instance, - "attributes": instance.get_attributes_if_has_permission(user), - } + return [] + return instance.get_attributes_if_has_permission(user) except ContentType.DoesNotExist: logging.exception("Content type does not exist") return None diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py index 25e93838c..7b2f48aa7 100644 --- a/hexa/metadata/schema/types.py +++ b/hexa/metadata/schema/types.py @@ -1,44 +1,18 @@ -from ariadne import InterfaceType, UnionType +from ariadne import InterfaceType from django.core.exceptions import PermissionDenied -from hexa.datasets.models import Dataset, DatasetVersion, DatasetVersionFile +has_metadata = InterfaceType("MetadataObject") -has_metadata = InterfaceType("HasMetadata") -linked_object = UnionType("LinkedObject") - -@linked_object.type_resolver -def resolve_linked_object_union_type(obj, *_): - """ - Resolver that determines which GraphQL type the linked object is. - """ - if isinstance(obj, Dataset): - return "Dataset" - if isinstance(obj, DatasetVersion): - return "DatasetVersion" - if isinstance(obj, DatasetVersionFile): - return "DatasetVersionFile" - return None - - -@has_metadata.field("metadata") +@has_metadata.field("attributes") def resolve_metadata(parent, info): user = info.context["request"].user try: metadata_attributes = parent.get_attributes_if_has_permission(user) if not metadata_attributes.exists(): - return { - "id": parent.extended_id, - "object": parent, - "attributes": [], - } - - response = { - "id": parent.extended_id, - "object": parent, - "attributes": metadata_attributes, - } - return response + return [] + else: + return metadata_attributes except PermissionDenied: return None @@ -48,4 +22,4 @@ def resolve_extended_id(parent, info): return parent.extended_id -bindables = [has_metadata, linked_object] +bindables = [has_metadata] diff --git a/hexa/metadata/tests/test_schema.py b/hexa/metadata/tests/test_schema.py index 1d2401216..0ec6e6af6 100644 --- a/hexa/metadata/tests/test_schema.py +++ b/hexa/metadata/tests/test_schema.py @@ -80,7 +80,7 @@ def test_adding_metadata_to_file(self): }, ) self.assertEqual( - r_add["data"], {"addMetadataToObject": {"success": True, "errors": []}} + r_add["data"], {"addMetadata": {"success": True, "errors": []}} ) r_after = self.run_query( @@ -164,7 +164,7 @@ def test_delete_metadata_from_file(self): ) self.assertEqual( r_delete["data"], - {"deleteMetadataFromObject": {"success": True, "errors": []}}, + {"deleteMetadata": {"success": True, "errors": []}}, ) r_after = self.run_query( self.queries["get_metadata_for_file"], {"id": str(file.id)} @@ -249,7 +249,7 @@ def test_edit_metadata_on_file(self): }, ) self.assertEqual( - r_edit["data"], {"editMetadataForObject": {"success": True, "errors": []}} + r_edit["data"], {"editMetadata": {"success": True, "errors": []}} ) r_after = self.run_query( self.queries["get_metadata_for_file"], {"id": str(file.id)} @@ -324,7 +324,7 @@ def test_adding_metadata_to_dataset(self): }, ) self.assertEqual( - r_add["data"], {"addMetadataToObject": {"success": True, "errors": []}} + r_add["data"], {"addMetadata": {"success": True, "errors": []}} ) r_after = self.run_query( @@ -411,7 +411,7 @@ def test_adding_metadata_to_dataset(self): """, "add_metadata_attribute": """ mutation AddMetadataToFile($input: MetadataAttributeInput!){ - addMetadataToObject(input: $input) { + addMetadata(input: $input) { success errors } @@ -419,7 +419,7 @@ def test_adding_metadata_to_dataset(self): """, "delete_metadata_attribute": """ mutation DeleteMetadataFromFile($input: DeleteMetadataAttributeInput!){ - deleteMetadataFromObject(input: $input) { + deleteMetadata(input: $input) { success errors } @@ -427,7 +427,7 @@ def test_adding_metadata_to_dataset(self): """, "edit_metadata_attribute": """ mutation editMetadataOnFile($input: MetadataAttributeInput!){ - editMetadataForObject(input: $input) { + editMetadata(input: $input) { success errors } From a2b13f8a5b5aa1e69a95950e62eadeed166e627c Mon Sep 17 00:00:00 2001 From: nazarfil Date: Tue, 24 Sep 2024 18:45:41 +0200 Subject: [PATCH 06/28] chore: rename attributes --- hexa/catalog/admin.py | 4 +- hexa/datasets/schema/types.py | 2 +- hexa/metadata/graphql/schema.graphql | 1 + ...ute_unique_key_per_data_object_and_more.py | 39 +++++++++++++++++++ hexa/metadata/models.py | 15 +++---- hexa/pipelines/admin.py | 4 +- 6 files changed, 53 insertions(+), 12 deletions(-) create mode 100644 hexa/metadata/migrations/0002_remove_metadataattribute_unique_key_per_data_object_and_more.py diff --git a/hexa/catalog/admin.py b/hexa/catalog/admin.py index 85247c601..40a1b7dba 100644 --- a/hexa/catalog/admin.py +++ b/hexa/catalog/admin.py @@ -14,10 +14,10 @@ class IndexAdmin(admin.ModelAdmin): search_fields = ("external_name",) def app_label(self, obj): - return obj.content_type.app_label + return obj.object_content_type.app_label def model(self, obj): - return obj.content_type.model + return obj.object_content_type.model @admin.register(IndexPermission) diff --git a/hexa/datasets/schema/types.py b/hexa/datasets/schema/types.py index 91ed1bdce..8442b8ac2 100644 --- a/hexa/datasets/schema/types.py +++ b/hexa/datasets/schema/types.py @@ -212,7 +212,7 @@ def resolve_version_permissions_delete(obj: DatasetVersion, info, **kwargs): def resolve_upload_url(obj, info, **kwargs): try: file = obj["file"] - upload_url = generate_upload_url(file.uri, file.content_type) + upload_url = generate_upload_url(file.uri, file.object_content_type) return upload_url except storage.exceptions.AlreadyExists as exc: logging.error(f"Upload URL generation failed: {exc.message}") diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql index 1c135ae6a..6eaacc862 100644 --- a/hexa/metadata/graphql/schema.graphql +++ b/hexa/metadata/graphql/schema.graphql @@ -10,6 +10,7 @@ interface MetadataObject { Generic metadata attribute """ type MetadataAttribute { + target: MetadataObject! id: UUID! key: String! value: JSON diff --git a/hexa/metadata/migrations/0002_remove_metadataattribute_unique_key_per_data_object_and_more.py b/hexa/metadata/migrations/0002_remove_metadataattribute_unique_key_per_data_object_and_more.py new file mode 100644 index 000000000..a560abb96 --- /dev/null +++ b/hexa/metadata/migrations/0002_remove_metadataattribute_unique_key_per_data_object_and_more.py @@ -0,0 +1,39 @@ +# Generated by Django 4.2.16 on 2024-09-24 16:42 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("contenttypes", "0002_remove_content_type_name"), + ("metadata", "0001_initial"), + ] + + operations = [ + migrations.RemoveConstraint( + model_name="metadataattribute", + name="unique_key_per_data_object", + ), + migrations.RemoveField( + model_name="metadataattribute", + name="content_type", + ), + migrations.AddField( + model_name="metadataattribute", + name="object_content_type", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="contenttypes.contenttype", + ), + ), + migrations.AddConstraint( + model_name="metadataattribute", + constraint=models.UniqueConstraint( + fields=("object_content_type", "object_id", "key"), + name="unique_key_per_data_object", + ), + ), + ] diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index 998f9e914..ac583f01b 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -12,33 +12,34 @@ class MetadataAttributeManager(models.Manager): - def get_for_instance(self, instance): + def filter_for_instance(self, instance): content_type = ContentType.objects.get_for_model(instance) return self.filter(content_type=content_type, object_id=instance.pk) class MetadataAttribute(Base): - content_type = models.ForeignKey( + object_content_type = models.ForeignKey( ContentType, null=True, blank=True, on_delete=models.CASCADE ) object_id = models.UUIDField(default=uuid.uuid4, editable=False) - data_object = GenericForeignKey("content_type", "object_id") + target = GenericForeignKey("object_content_type", "object_id") key = models.CharField(max_length=255) value = models.CharField(max_length=255, null=True, blank=True) system = models.BooleanField(default=False) + objects = MetadataAttributeManager() class Meta: constraints = [ models.UniqueConstraint( - fields=["content_type", "object_id", "key"], + fields=["object_content_type", "object_id", "key"], name="unique_key_per_data_object", ) ] def __str__(self): - return f"" + return f"" class MetadataMixin: @@ -119,7 +120,7 @@ def update_attribute_if_has_permission(self, user, key, value=None, system=False def delete_attribute(self, key): content_type = ContentType.objects.get_for_model(self) - return self.objects.filter( + return MetadataAttribute.objects.filter( content_type=content_type, object_id=self.pk, key=key ).delete() @@ -129,7 +130,7 @@ def delete_attribute_if_has_permission(self, user, key): def get_attributes(self, **kwargs): content_type = ContentType.objects.get_for_model(self) - metadata_attr = self.objects.filter( + metadata_attr = MetadataAttribute.objects.filter( content_type=content_type, object_id=self.pk, **kwargs, diff --git a/hexa/pipelines/admin.py b/hexa/pipelines/admin.py index e70c2b0d5..44845d1c7 100644 --- a/hexa/pipelines/admin.py +++ b/hexa/pipelines/admin.py @@ -49,10 +49,10 @@ class IndexAdmin(admin.ModelAdmin): search_fields = ("external_name",) def app_label(self, obj): - return obj.content_type.app_label + return obj.object_content_type.app_label def model(self, obj): - return obj.content_type.model + return obj.object_content_type.model @admin.register(IndexPermission) From f812bad65415ffb8fdffc0ef51aac3cc884b705e Mon Sep 17 00:00:00 2001 From: nazarfil Date: Wed, 25 Sep 2024 10:04:32 +0200 Subject: [PATCH 07/28] fix: rmeoved has permission from model --- hexa/metadata/models.py | 57 +++++++++---------------------- hexa/metadata/schema/mutations.py | 31 ++++++++++------- hexa/metadata/schema/queries.py | 9 ++--- hexa/metadata/schema/types.py | 11 +++--- 4 files changed, 47 insertions(+), 61 deletions(-) diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index ac583f01b..203e06738 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -37,6 +37,12 @@ class Meta: name="unique_key_per_data_object", ) ] + indexes = [ + models.Index( + fields=["object_content_type", "object_id", "key"], + name="index_object_key", + ), + ] def __str__(self): return f"" @@ -65,47 +71,38 @@ def encode_base64_id(id: str, model: str) -> str: return encoded @staticmethod - def decode_base64_id(encoded_id): + def decode_base64_id(encoded_id: str) -> (str, str): decoded_bytes = base64.b64decode(encoded_id) decoded_str = decoded_bytes.decode("utf-8") id, model_type = decoded_str.split(":") return id, model_type def can_view_metadata(self, user: User): - permission = f"{self._meta.app_label}.view_{self.class_name}" - if not user.has_perm(permission, self): - raise PermissionDenied + self._user_has_permission_to(user, "view") def can_update_metadata(self, user: User): - permission = f"{self._meta.app_label}.update_{self.class_name}" - if not user.has_perm(permission, self): - raise PermissionDenied + self._user_has_permission_to(user, "update") def can_delete_metadata(self, user: User): - permission = f"{self._meta.app_label}.delete_{self.class_name}" + self._user_has_permission_to(user, "delete") + + def _user_has_permission_to(self, user: User, permission: str): + permission = f"{self._meta.app_label}.{permission}_{self.class_name}" if not user.has_perm(permission, self): raise PermissionDenied def add_attribute(self, key, value, system): - content_type = ContentType.objects.get_for_model(self) created = MetadataAttribute.objects.create( - content_type=content_type, - object_id=self.pk, + target=self, key=key, value=value, system=system, ) return created - def add_attribute_if_has_permission(self, user, key, value=None, system=False): - self.can_update_metadata(user) - return self.add_attribute(key, value, system) - def update_attribute(self, key, system, value): - content_type = ContentType.objects.get_for_model(self) metadata_attr, created = MetadataAttribute.objects.update_or_create( - content_type=content_type, - object_id=self.pk, + target=self, key=key, defaults={ "value": value, @@ -114,31 +111,11 @@ def update_attribute(self, key, system, value): ) return metadata_attr - def update_attribute_if_has_permission(self, user, key, value=None, system=False): - self.can_update_metadata(user) - return self.update_attribute(key, system, value) - def delete_attribute(self, key): - content_type = ContentType.objects.get_for_model(self) - return MetadataAttribute.objects.filter( - content_type=content_type, object_id=self.pk, key=key - ).delete() - - def delete_attribute_if_has_permission(self, user, key): - self.can_delete_metadata(user) - return self.delete_attribute(key) + return MetadataAttribute.objects.filter(target=self, key=key).delete() def get_attributes(self, **kwargs): - content_type = ContentType.objects.get_for_model(self) metadata_attr = MetadataAttribute.objects.filter( - content_type=content_type, - object_id=self.pk, - **kwargs, + target=self**kwargs, ) return metadata_attr - - def get_attributes_if_has_permission( - self, user: User, **kwargs - ) -> [MetadataAttribute]: - self.can_view_metadata(user) - return self.get_attributes(**kwargs).all() diff --git a/hexa/metadata/schema/mutations.py b/hexa/metadata/schema/mutations.py index 31dcb77b3..16291670a 100644 --- a/hexa/metadata/schema/mutations.py +++ b/hexa/metadata/schema/mutations.py @@ -18,12 +18,13 @@ def resolve_add_metadata(_, info, **kwargs): mutation_input.get("extendedId") ) - model_instance.add_attribute_if_has_permission( - user=user, - key=mutation_input["key"], - value=mutation_input.get("value", None), - system=False, - ) + if model_instance.can_add_metadata: + model_instance.add_attribute( + user=user, + key=mutation_input["key"], + value=mutation_input.get("value", None), + system=False, + ) return {"success": True, "errors": []} @@ -47,9 +48,11 @@ def resolve_delete_metadata(_, info, **kwargs): mutation_input.get("extendedId") ) - deleted, _ = model_instance.delete_attribute_if_has_permission( - user=user, key=mutation_input["key"] - ) + if model_instance.can_delete_metadata: + deleted, _ = model_instance.delete_attribute( + user=user, key=mutation_input["key"] + ) + if deleted > 0: return {"success": True, "errors": []} else: @@ -73,9 +76,13 @@ def resolve_edit_metadata(_, info, **kwargs): mutation_input.get("extendedId") ) - model_instance.update_attribute_if_has_permission( - user, key=mutation_input["key"], value=mutation_input["value"], system=False - ) + if model_instance.can_update_metadata: + model_instance.update_attribute( + user, + key=mutation_input["key"], + value=mutation_input["value"], + system=False, + ) return {"success": True, "errors": []} diff --git a/hexa/metadata/schema/queries.py b/hexa/metadata/schema/queries.py index 0771c0c09..a8ecf4f11 100644 --- a/hexa/metadata/schema/queries.py +++ b/hexa/metadata/schema/queries.py @@ -14,10 +14,11 @@ def resolve_metadata_query(_, info, **kwargs): user = request.user try: model_class, instance = get_model_instance(kwargs.get("extendedId")) - metadata_attributes = instance.get_attributes_if_has_permission(user) - if not metadata_attributes.exists(): - return [] - return instance.get_attributes_if_has_permission(user) + if instance.can_view_metadata(user): + metadata_attributes = instance.get_attributes() + if not metadata_attributes.exists(): + return [] + return metadata_attributes except ContentType.DoesNotExist: logging.exception("Content type does not exist") return None diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py index 7b2f48aa7..b7eb2db56 100644 --- a/hexa/metadata/schema/types.py +++ b/hexa/metadata/schema/types.py @@ -8,11 +8,12 @@ def resolve_metadata(parent, info): user = info.context["request"].user try: - metadata_attributes = parent.get_attributes_if_has_permission(user) - if not metadata_attributes.exists(): - return [] - else: - return metadata_attributes + if not parent.can_view_metadata(user): + metadata_attributes = parent.get_attributes() + if not metadata_attributes.exists(): + return [] + else: + return metadata_attributes except PermissionDenied: return None From ef47f047c94ba1abb295968d12e2ebbbc61c1ccc Mon Sep 17 00:00:00 2001 From: nazarfil Date: Wed, 25 Sep 2024 10:12:38 +0200 Subject: [PATCH 08/28] fix: renamed to opaqueId --- hexa/datasets/graphql/schema.graphql | 6 +++--- hexa/metadata/graphql/schema.graphql | 8 ++++---- hexa/metadata/models.py | 2 +- hexa/metadata/schema/mutations.py | 12 +++-------- hexa/metadata/schema/queries.py | 2 +- hexa/metadata/schema/types.py | 6 +++--- hexa/metadata/tests/test_schema.py | 30 ++++++++++++++-------------- 7 files changed, 30 insertions(+), 36 deletions(-) diff --git a/hexa/datasets/graphql/schema.graphql b/hexa/datasets/graphql/schema.graphql index 94976b19e..4d2fb823d 100644 --- a/hexa/datasets/graphql/schema.graphql +++ b/hexa/datasets/graphql/schema.graphql @@ -17,7 +17,7 @@ type Dataset implements MetadataObject{ latestVersion: DatasetVersion links(page: Int = 1, perPage: Int = 15): DatasetLinkPage! attributes : [MetadataAttribute!]! - extendedId: String! + OpaqueId: String! } """ @@ -47,7 +47,7 @@ type DatasetVersion implements MetadataObject{ fileByName(name: String!): DatasetVersionFile files(page: Int = 1, perPage: Int = 15): DatasetVersionFilePage! attributes : [MetadataAttribute!]! - extendedId: String! + OpaqueId: String! } """ @@ -125,7 +125,7 @@ type DatasetVersionFile implements MetadataObject{ contentType: String! fileSample: DatasetFileSample attributes : [MetadataAttribute!]! - extendedId: String! + OpaqueId: String! } """ diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql index 6eaacc862..d86c4c9b2 100644 --- a/hexa/metadata/graphql/schema.graphql +++ b/hexa/metadata/graphql/schema.graphql @@ -2,7 +2,7 @@ Interface for type implementing metadata """ interface MetadataObject { - extendedId: String! # Encoded concatenation of the class model type and the instance id + OpaqueId: String! # Encoded concatenation of the class model type and the instance id attributes : [MetadataAttribute!]! } @@ -21,7 +21,7 @@ type MetadataAttribute { Input to add or edit a custom attribute, empty field for value is accepted """ input MetadataAttributeInput { - extendedId: String! #Encoded ID of the instance for the linked object + OpaqueId: String! #Encoded ID of the instance for the linked object key: String! value: JSON } @@ -31,7 +31,7 @@ input MetadataAttributeInput { Input to delete custom attribute """ input DeleteMetadataAttributeInput { - extendedId: String! #Encoded ID of the instance for the linked object + OpaqueId: String! #Encoded ID of the instance for the linked object key: String! } @@ -82,7 +82,7 @@ type EditAttributeResult { } extend type Query { - metadataAttributes(extendedId: String!): [MetadataAttribute]! + metadataAttributes(OpaqueId: String!): [MetadataAttribute]! } extend type Mutation { diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index 203e06738..91ab4093a 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -55,7 +55,7 @@ class MetadataMixin: """ @property - def extended_id(self) -> str: + def opaque_id(self) -> str: app_label = self._meta.app_label class_name = self._meta.object_name return self.encode_base64_id(str(self.id), f"{app_label}.{class_name}") diff --git a/hexa/metadata/schema/mutations.py b/hexa/metadata/schema/mutations.py index 16291670a..d08684d12 100644 --- a/hexa/metadata/schema/mutations.py +++ b/hexa/metadata/schema/mutations.py @@ -14,9 +14,7 @@ def resolve_add_metadata(_, info, **kwargs): user = info.context["request"].user try: - model_class, model_instance = get_model_instance( - mutation_input.get("extendedId") - ) + model_class, model_instance = get_model_instance(mutation_input.get("OpaqueId")) if model_instance.can_add_metadata: model_instance.add_attribute( @@ -44,9 +42,7 @@ def resolve_delete_metadata(_, info, **kwargs): user = info.context["request"].user try: - model_class, model_instance = get_model_instance( - mutation_input.get("extendedId") - ) + model_class, model_instance = get_model_instance(mutation_input.get("OpaqueId")) if model_instance.can_delete_metadata: deleted, _ = model_instance.delete_attribute( @@ -72,9 +68,7 @@ def resolve_edit_metadata(_, info, **kwargs): user = info.context["request"].user try: - model_class, model_instance = get_model_instance( - mutation_input.get("extendedId") - ) + model_class, model_instance = get_model_instance(mutation_input.get("OpaqueId")) if model_instance.can_update_metadata: model_instance.update_attribute( diff --git a/hexa/metadata/schema/queries.py b/hexa/metadata/schema/queries.py index a8ecf4f11..148c19051 100644 --- a/hexa/metadata/schema/queries.py +++ b/hexa/metadata/schema/queries.py @@ -13,7 +13,7 @@ def resolve_metadata_query(_, info, **kwargs): request = info.context["request"] user = request.user try: - model_class, instance = get_model_instance(kwargs.get("extendedId")) + model_class, instance = get_model_instance(kwargs.get("OpaqueId")) if instance.can_view_metadata(user): metadata_attributes = instance.get_attributes() if not metadata_attributes.exists(): diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py index b7eb2db56..290f84f46 100644 --- a/hexa/metadata/schema/types.py +++ b/hexa/metadata/schema/types.py @@ -18,9 +18,9 @@ def resolve_metadata(parent, info): return None -@has_metadata.field("extendedId") -def resolve_extended_id(parent, info): - return parent.extended_id +@has_metadata.field("OpaqueId") +def resolve_opaque_id(parent, info): + return parent.opaque_id bindables = [has_metadata] diff --git a/hexa/metadata/tests/test_schema.py b/hexa/metadata/tests/test_schema.py index 0ec6e6af6..e46311525 100644 --- a/hexa/metadata/tests/test_schema.py +++ b/hexa/metadata/tests/test_schema.py @@ -58,7 +58,7 @@ def test_adding_metadata_to_file(self): "datasetVersionFile": { "filename": "file.csv", "metadata": { - "id": file.extended_id, + "id": file.opaque_id, "attributes": [], "object": { "__typename": "DatasetVersionFile", @@ -73,7 +73,7 @@ def test_adding_metadata_to_file(self): self.queries["add_metadata_attribute"], { "input": { - "extendedId": file.extended_id, + "OpaqueId": file.opaque_id, "key": "descriptions", "value": "test", } @@ -92,7 +92,7 @@ def test_adding_metadata_to_file(self): "datasetVersionFile": { "filename": "file.csv", "metadata": { - "id": file.extended_id, + "id": file.opaque_id, "object": { "__typename": "DatasetVersionFile", "id": str(file.id), @@ -140,7 +140,7 @@ def test_delete_metadata_from_file(self): "datasetVersionFile": { "filename": "file.csv", "metadata": { - "id": file.extended_id, + "id": file.opaque_id, "object": { "__typename": "DatasetVersionFile", "id": str(file.id), @@ -157,7 +157,7 @@ def test_delete_metadata_from_file(self): self.queries["delete_metadata_attribute"], { "input": { - "extendedId": file.extended_id, + "OpaqueId": file.opaque_id, "key": metadataAttribute.key, } }, @@ -175,7 +175,7 @@ def test_delete_metadata_from_file(self): "datasetVersionFile": { "filename": "file.csv", "metadata": { - "id": file.extended_id, + "id": file.opaque_id, "object": { "__typename": "DatasetVersionFile", "id": str(file.id), @@ -221,7 +221,7 @@ def test_edit_metadata_on_file(self): "datasetVersionFile": { "filename": "file.csv", "metadata": { - "id": file.extended_id, + "id": file.opaque_id, "object": { "__typename": "DatasetVersionFile", "id": str(file.id), @@ -242,7 +242,7 @@ def test_edit_metadata_on_file(self): self.queries["edit_metadata_attribute"], { "input": { - "extendedId": file.extended_id, + "OpaqueId": file.opaque_id, "key": metadataAttribute.key, "value": "anotherValue", } @@ -260,7 +260,7 @@ def test_edit_metadata_on_file(self): "datasetVersionFile": { "filename": "file.csv", "metadata": { - "id": file.extended_id, + "id": file.opaque_id, "object": { "__typename": "DatasetVersionFile", "id": str(file.id), @@ -299,9 +299,9 @@ def test_adding_metadata_to_dataset(self): { "dataset": { "id": str(dataset.id), - "extendedId": dataset.extended_id, + "OpaqueId": dataset.opaque_id, "metadata": { - "id": dataset.extended_id, + "id": dataset.opaque_id, "attributes": [], "object": { "__typename": "Dataset", @@ -317,7 +317,7 @@ def test_adding_metadata_to_dataset(self): self.queries["add_metadata_attribute"], { "input": { - "extendedId": dataset.extended_id, + "OpaqueId": dataset.opaque_id, "key": "descriptions", "value": "test", } @@ -335,9 +335,9 @@ def test_adding_metadata_to_dataset(self): { "dataset": { "id": str(dataset.id), - "extendedId": dataset.extended_id, + "OpaqueId": dataset.opaque_id, "metadata": { - "id": dataset.extended_id, + "id": dataset.opaque_id, "object": { "__typename": "Dataset", "id": str(dataset.id), @@ -384,7 +384,7 @@ def test_adding_metadata_to_dataset(self): query GetObjectMetadata($id: ID!) { dataset(id: $id) { id - extendedId + OpaqueId metadata { id From 81bd55e77af04aa6459c679a0a915446f853a055 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Wed, 25 Sep 2024 20:55:50 +0200 Subject: [PATCH 09/28] try generic relation --- hexa/datasets/models.py | 23 ++++++++- hexa/metadata/models.py | 77 ++++++++++++++++--------------- hexa/metadata/schema/mutations.py | 5 +- hexa/metadata/schema/queries.py | 5 +- hexa/metadata/schema/types.py | 17 +++---- hexa/metadata/schema/utils.py | 4 +- 6 files changed, 73 insertions(+), 58 deletions(-) diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index 5db373d14..5f5010fb8 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -10,7 +10,7 @@ from slugify import slugify from hexa.core.models.base import Base, BaseQuerySet -from hexa.metadata.models import MetadataMixin +from hexa.metadata.models import MetadataMixin, OpaqueID from hexa.user_management.models import User logger = logging.getLogger(__name__) @@ -97,6 +97,13 @@ class Meta: objects = DatasetManager.from_queryset(DatasetQuerySet)() + def save(self, *args, **kwargs): + super().save(*args, **kwargs) + + app_label = self._meta.app_label + class_name = self._meta.object_name + self.opaque_id = OpaqueID(self.id, f"{app_label}.{class_name}") + @property def latest_version(self): return self.versions.order_by("-created_at").first() @@ -204,6 +211,13 @@ class Meta: ordering = ["-created_at"] unique_together = ("dataset", "name") + def save(self, *args, **kwargs): + super().save(*args, **kwargs) + + app_label = self._meta.app_label + class_name = self._meta.object_name + self.opaque_id = OpaqueID(self.id, f"{app_label}.{class_name}") + def delete_if_has_perm(self, *, principal: User): if not principal.has_perm("datasets.delete_dataset_version", self): raise PermissionDenied @@ -275,6 +289,13 @@ class DatasetVersionFile(Base, MetadataMixin): ) objects = DatasetVersionFileManager.from_queryset(DatasetVersionFileQuerySet)() + def save(self, *args, **kwargs): + super().save(*args, **kwargs) + + app_label = self._meta.app_label + class_name = self._meta.object_name + self.opaque_id = OpaqueID(self.id, f"{app_label}.{class_name}") + @property def filename(self): return self.uri.split("/")[-1] diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index 91ab4093a..382877662 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -2,7 +2,7 @@ import re import uuid -from django.contrib.contenttypes.fields import GenericForeignKey +from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation from django.contrib.contenttypes.models import ContentType from django.core.exceptions import PermissionDenied from django.db import models @@ -11,12 +11,6 @@ from hexa.user_management.models import User -class MetadataAttributeManager(models.Manager): - def filter_for_instance(self, instance): - content_type = ContentType.objects.get_for_model(instance) - return self.filter(content_type=content_type, object_id=instance.pk) - - class MetadataAttribute(Base): object_content_type = models.ForeignKey( ContentType, null=True, blank=True, on_delete=models.CASCADE @@ -28,8 +22,6 @@ class MetadataAttribute(Base): value = models.CharField(max_length=255, null=True, blank=True) system = models.BooleanField(default=False) - objects = MetadataAttributeManager() - class Meta: constraints = [ models.UniqueConstraint( @@ -48,21 +40,11 @@ def __str__(self): return f"" -class MetadataMixin: - """ - Mixin to add metadata functionality to models. - This mixin allows the model to associate key-value metadata attributes. - """ - - @property - def opaque_id(self) -> str: - app_label = self._meta.app_label - class_name = self._meta.object_name - return self.encode_base64_id(str(self.id), f"{app_label}.{class_name}") +class OpaqueID: + value: str = None - @property - def class_name(self): - return re.sub(r"(? str: @@ -77,6 +59,32 @@ def decode_base64_id(encoded_id: str) -> (str, str): id, model_type = decoded_str.split(":") return id, model_type + def get_decoded_value(self): + return self.decode_base64_id(self.value) + + +class MetadataMixin: + """ + Mixin to add metadata functionality to models. + This mixin allows the model to associate key-value metadata attributes. + """ + + opaque_id: OpaqueID = None + attributes = GenericRelation( + "MetadataAttribute", + content_type_field="object_content_type", + object_id_field="object_id", + ) + + @property + def class_name(self): + return re.sub(r"(? 0: - return {"success": True, "errors": []} + if deleted > 0: + return {"success": True, "errors": []} else: return {"success": False, "errors": ["METADATA_ATTRIBUTE_NOT_FOUND"]} diff --git a/hexa/metadata/schema/queries.py b/hexa/metadata/schema/queries.py index 148c19051..cb079e4bb 100644 --- a/hexa/metadata/schema/queries.py +++ b/hexa/metadata/schema/queries.py @@ -15,10 +15,7 @@ def resolve_metadata_query(_, info, **kwargs): try: model_class, instance = get_model_instance(kwargs.get("OpaqueId")) if instance.can_view_metadata(user): - metadata_attributes = instance.get_attributes() - if not metadata_attributes.exists(): - return [] - return metadata_attributes + return list(instance.get_attributes()) except ContentType.DoesNotExist: logging.exception("Content type does not exist") return None diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py index 290f84f46..8dd0a6812 100644 --- a/hexa/metadata/schema/types.py +++ b/hexa/metadata/schema/types.py @@ -1,26 +1,23 @@ from ariadne import InterfaceType from django.core.exceptions import PermissionDenied -has_metadata = InterfaceType("MetadataObject") +metadata_object = InterfaceType("MetadataObject") -@has_metadata.field("attributes") +@metadata_object.field("attributes") def resolve_metadata(parent, info): user = info.context["request"].user try: - if not parent.can_view_metadata(user): + if parent.can_view_metadata(user): metadata_attributes = parent.get_attributes() - if not metadata_attributes.exists(): - return [] - else: - return metadata_attributes + return metadata_attributes if metadata_attributes.exists() else [] except PermissionDenied: return None -@has_metadata.field("OpaqueId") +@metadata_object.field("OpaqueId") def resolve_opaque_id(parent, info): - return parent.opaque_id + return parent.opaque_id.value -bindables = [has_metadata] +bindables = [metadata_object] diff --git a/hexa/metadata/schema/utils.py b/hexa/metadata/schema/utils.py index d9560fea6..782035c58 100644 --- a/hexa/metadata/schema/utils.py +++ b/hexa/metadata/schema/utils.py @@ -1,13 +1,13 @@ from django.contrib.contenttypes.models import ContentType -from hexa.metadata.models import MetadataMixin +from hexa.metadata.models import OpaqueID def get_model_instance(id: str): """ Get a model instance by its id. """ - instance_id, model_type = MetadataMixin.decode_base64_id(id) + instance_id, model_type = OpaqueID.decode_base64_id(id) app_label, model = model_type.split(".") content_type = ContentType.objects.get( app_label=app_label.lower(), model=model.lower() From fb5e5aab3d0da73e680b34e79bab8c4706a3aeea Mon Sep 17 00:00:00 2001 From: nazarfil Date: Thu, 26 Sep 2024 10:25:59 +0200 Subject: [PATCH 10/28] fix: adds indexing migration --- hexa/datasets/models.py | 22 ++++++++++-- ...0003_metadataattribute_index_object_key.py | 22 ++++++++++++ hexa/metadata/models.py | 10 ++---- hexa/metadata/schema/queries.py | 2 +- hexa/metadata/tests/test_schema.py | 36 ++----------------- 5 files changed, 47 insertions(+), 45 deletions(-) create mode 100644 hexa/metadata/migrations/0003_metadataattribute_index_object_key.py diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index 5f5010fb8..9b0994291 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -2,6 +2,7 @@ import secrets from django.contrib.auth.models import AnonymousUser +from django.contrib.contenttypes.fields import GenericRelation from django.core.exceptions import PermissionDenied from django.db import models from django.db.models import JSONField @@ -10,7 +11,7 @@ from slugify import slugify from hexa.core.models.base import Base, BaseQuerySet -from hexa.metadata.models import MetadataMixin, OpaqueID +from hexa.metadata.models import MetadataAttribute, MetadataMixin, OpaqueID from hexa.user_management.models import User logger = logging.getLogger(__name__) @@ -94,7 +95,11 @@ class Meta: name = models.TextField(max_length=64, null=False, blank=False) slug = models.TextField(null=False, blank=False, max_length=255) description = models.TextField(blank=True, null=True) - + attributes = GenericRelation( + MetadataAttribute, + content_type_field="object_content_type", + object_id_field="object_id", + ) objects = DatasetManager.from_queryset(DatasetQuerySet)() def save(self, *args, **kwargs): @@ -204,7 +209,11 @@ class DatasetVersion(Base, MetadataMixin): on_delete=models.SET_NULL, related_name="dataset_versions", ) - + attributes = GenericRelation( + MetadataAttribute, + content_type_field="object_content_type", + object_id_field="object_id", + ) objects = DatasetVersionManager.from_queryset(DatasetVersionQuerySet)() class Meta: @@ -287,6 +296,13 @@ class DatasetVersionFile(Base, MetadataMixin): on_delete=models.CASCADE, related_name="files", ) + + attributes = GenericRelation( + MetadataAttribute, + content_type_field="object_content_type", + object_id_field="object_id", + ) + objects = DatasetVersionFileManager.from_queryset(DatasetVersionFileQuerySet)() def save(self, *args, **kwargs): diff --git a/hexa/metadata/migrations/0003_metadataattribute_index_object_key.py b/hexa/metadata/migrations/0003_metadataattribute_index_object_key.py new file mode 100644 index 000000000..ac8cec21e --- /dev/null +++ b/hexa/metadata/migrations/0003_metadataattribute_index_object_key.py @@ -0,0 +1,22 @@ +# Generated by Django 4.2.16 on 2024-09-26 07:13 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ( + "metadata", + "0002_remove_metadataattribute_unique_key_per_data_object_and_more", + ), + ] + + operations = [ + migrations.AddIndex( + model_name="metadataattribute", + index=models.Index( + fields=["object_content_type", "object_id", "key"], + name="index_object_key", + ), + ), + ] diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index 382877662..57105ad16 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -2,7 +2,7 @@ import re import uuid -from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation +from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType from django.core.exceptions import PermissionDenied from django.db import models @@ -70,11 +70,6 @@ class MetadataMixin: """ opaque_id: OpaqueID = None - attributes = GenericRelation( - "MetadataAttribute", - content_type_field="object_content_type", - object_id_field="object_id", - ) @property def class_name(self): @@ -119,4 +114,5 @@ def get_attributes(self, **kwargs): raise ValueError( "Instance must be saved before adding metadata attributes." ) - return self.attributes.filter(**kwargs).all() + # return self.attributes.filter(**kwargs).all() + return self.attributes.all() diff --git a/hexa/metadata/schema/queries.py b/hexa/metadata/schema/queries.py index cb079e4bb..598e5cda4 100644 --- a/hexa/metadata/schema/queries.py +++ b/hexa/metadata/schema/queries.py @@ -15,7 +15,7 @@ def resolve_metadata_query(_, info, **kwargs): try: model_class, instance = get_model_instance(kwargs.get("OpaqueId")) if instance.can_view_metadata(user): - return list(instance.get_attributes()) + return instance.get_attributes() except ContentType.DoesNotExist: logging.exception("Content type does not exist") return None diff --git a/hexa/metadata/tests/test_schema.py b/hexa/metadata/tests/test_schema.py index e46311525..3997166ba 100644 --- a/hexa/metadata/tests/test_schema.py +++ b/hexa/metadata/tests/test_schema.py @@ -51,7 +51,7 @@ def test_adding_metadata_to_file(self): r_before = self.run_query( self.queries["get_metadata_for_file"], {"id": str(file.id)} ) - + print(r_before) self.assertEqual( r_before["data"], { @@ -356,27 +356,9 @@ def test_adding_metadata_to_dataset(self): query GetObjectMetadata($id: ID!) { datasetVersionFile(id: $id) { filename - metadata - { - id - object{ - __typename - ... on DatasetVersionFile { - id - uri - } - ... on Dataset { - id - name - } - ... on DatasetVersion { - id - } - } - attributes { + attributes { key, value, system } - } } } """, @@ -388,20 +370,6 @@ def test_adding_metadata_to_dataset(self): metadata { id - object{ - __typename - ... on DatasetVersionFile { - id - uri - } - ... on Dataset { - id - name - } - ... on DatasetVersion { - id - } - } attributes { key, value, system } From b7dbfa62cb98c81fc138a6673dd5b8839616aa6b Mon Sep 17 00:00:00 2001 From: nazarfil Date: Thu, 26 Sep 2024 10:57:29 +0200 Subject: [PATCH 11/28] fix: adds indexing migration --- hexa/datasets/models.py | 2 ++ hexa/metadata/models.py | 10 ++++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index 9b0994291..e436e2f42 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -95,11 +95,13 @@ class Meta: name = models.TextField(max_length=64, null=False, blank=False) slug = models.TextField(null=False, blank=False, max_length=255) description = models.TextField(blank=True, null=True) + attributes = GenericRelation( MetadataAttribute, content_type_field="object_content_type", object_id_field="object_id", ) + objects = DatasetManager.from_queryset(DatasetQuerySet)() def save(self, *args, **kwargs): diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index 57105ad16..083eff9f7 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -71,6 +71,9 @@ class MetadataMixin: opaque_id: OpaqueID = None + class Meta: + abstract = True + @property def class_name(self): return re.sub(r"(? Date: Thu, 26 Sep 2024 16:40:43 +0200 Subject: [PATCH 12/28] chore: adds todos --- hexa/datasets/graphql/schema.graphql | 6 +++--- hexa/datasets/models.py | 14 ++++---------- hexa/metadata/graphql/schema.graphql | 12 ++++++++---- hexa/metadata/models.py | 15 ++++++++++++--- hexa/metadata/schema/mutations.py | 6 +++--- hexa/metadata/schema/queries.py | 2 +- hexa/metadata/schema/types.py | 11 ++++++++--- hexa/metadata/schema/utils.py | 4 ++-- hexa/metadata/tests/test_schema.py | 14 +++++++------- 9 files changed, 48 insertions(+), 36 deletions(-) diff --git a/hexa/datasets/graphql/schema.graphql b/hexa/datasets/graphql/schema.graphql index 4d2fb823d..3207995ee 100644 --- a/hexa/datasets/graphql/schema.graphql +++ b/hexa/datasets/graphql/schema.graphql @@ -17,7 +17,7 @@ type Dataset implements MetadataObject{ latestVersion: DatasetVersion links(page: Int = 1, perPage: Int = 15): DatasetLinkPage! attributes : [MetadataAttribute!]! - OpaqueId: String! + opaqueId: String! } """ @@ -47,7 +47,7 @@ type DatasetVersion implements MetadataObject{ fileByName(name: String!): DatasetVersionFile files(page: Int = 1, perPage: Int = 15): DatasetVersionFilePage! attributes : [MetadataAttribute!]! - OpaqueId: String! + opaqueId: String! } """ @@ -125,7 +125,7 @@ type DatasetVersionFile implements MetadataObject{ contentType: String! fileSample: DatasetFileSample attributes : [MetadataAttribute!]! - OpaqueId: String! + opaqueId: String! } """ diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index e436e2f42..1423b88c4 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -11,7 +11,7 @@ from slugify import slugify from hexa.core.models.base import Base, BaseQuerySet -from hexa.metadata.models import MetadataAttribute, MetadataMixin, OpaqueID +from hexa.metadata.models import MetadataAttribute, MetadataMixin, OpaqueId from hexa.user_management.models import User logger = logging.getLogger(__name__) @@ -109,7 +109,7 @@ def save(self, *args, **kwargs): app_label = self._meta.app_label class_name = self._meta.object_name - self.opaque_id = OpaqueID(self.id, f"{app_label}.{class_name}") + self.opaque_id = OpaqueId(self.id, f"{app_label}.{class_name}") @property def latest_version(self): @@ -227,7 +227,7 @@ def save(self, *args, **kwargs): app_label = self._meta.app_label class_name = self._meta.object_name - self.opaque_id = OpaqueID(self.id, f"{app_label}.{class_name}") + self.opaque_id = OpaqueId(self.id, f"{app_label}.{class_name}") def delete_if_has_perm(self, *, principal: User): if not principal.has_perm("datasets.delete_dataset_version", self): @@ -299,12 +299,6 @@ class DatasetVersionFile(Base, MetadataMixin): related_name="files", ) - attributes = GenericRelation( - MetadataAttribute, - content_type_field="object_content_type", - object_id_field="object_id", - ) - objects = DatasetVersionFileManager.from_queryset(DatasetVersionFileQuerySet)() def save(self, *args, **kwargs): @@ -312,7 +306,7 @@ def save(self, *args, **kwargs): app_label = self._meta.app_label class_name = self._meta.object_name - self.opaque_id = OpaqueID(self.id, f"{app_label}.{class_name}") + self.opaque_id = OpaqueId(self.id, f"{app_label}.{class_name}") @property def filename(self): diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql index d86c4c9b2..ce51e0397 100644 --- a/hexa/metadata/graphql/schema.graphql +++ b/hexa/metadata/graphql/schema.graphql @@ -1,8 +1,9 @@ """ Interface for type implementing metadata """ +# TODO: interface MetadataObject { - OpaqueId: String! # Encoded concatenation of the class model type and the instance id + opaqueId: OpaqueID! # Encoded concatenation of the class model type and the instance id - attributes : [MetadataAttribute!]! } @@ -21,7 +22,7 @@ type MetadataAttribute { Input to add or edit a custom attribute, empty field for value is accepted """ input MetadataAttributeInput { - OpaqueId: String! #Encoded ID of the instance for the linked object + opaqueId: String! #Encoded ID of the instance for the linked object key: String! value: JSON } @@ -31,7 +32,7 @@ input MetadataAttributeInput { Input to delete custom attribute """ input DeleteMetadataAttributeInput { - OpaqueId: String! #Encoded ID of the instance for the linked object + opaqueId: String! #Encoded ID of the instance for the linked object key: String! } @@ -82,7 +83,7 @@ type EditAttributeResult { } extend type Query { - metadataAttributes(OpaqueId: String!): [MetadataAttribute]! + metadataAttributes(opaqueId: String!): [MetadataAttribute]! } extend type Mutation { @@ -93,3 +94,6 @@ extend type Mutation { "Edit metadata attribute for an object instance" editMetadata(input: MetadataAttributeInput!): EditAttributeResult! @loginRequired } + + + diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index 083eff9f7..5122e595f 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -2,7 +2,7 @@ import re import uuid -from django.contrib.contenttypes.fields import GenericForeignKey +from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation from django.contrib.contenttypes.models import ContentType from django.core.exceptions import PermissionDenied from django.db import models @@ -40,7 +40,7 @@ def __str__(self): return f"" -class OpaqueID: +class OpaqueId: value: str = None def __init__(self, id: uuid.UUID, model: str): @@ -69,7 +69,12 @@ class MetadataMixin: This mixin allows the model to associate key-value metadata attributes. """ - opaque_id: OpaqueID = None + opaque_id: OpaqueId = None + attributes = GenericRelation( + MetadataAttribute, + content_type_field="object_content_type", + object_id_field="object_id", + ) class Meta: abstract = True @@ -78,6 +83,7 @@ class Meta: def class_name(self): return re.sub(r"(? Date: Mon, 30 Sep 2024 10:11:32 +0200 Subject: [PATCH 13/28] fix: moves permissions to model --- hexa/datasets/models.py | 49 +++++++++++++++++++++++++--- hexa/metadata/graphql/schema.graphql | 2 +- hexa/metadata/models.py | 21 ++---------- 3 files changed, 49 insertions(+), 23 deletions(-) diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index 1423b88c4..51dc7b11c 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -145,6 +145,21 @@ def create_version(self, *, principal: User, name: str, description: str = None) description=description, ) + def can_view_metadata(self, user: User): + if not user.has_perm("datasets.view_dataset", self): + raise PermissionDenied + return True + + def can_update_metadata(self, user: User): + if not user.has_perm("datasets.update_dataset", self): + raise PermissionDenied + return True + + def can_delete_metadata(self, user: User): + if not user.has_perm("datasets.update_dataset", self): + raise PermissionDenied + return True + def link(self, principal: User, workspace: any): return DatasetLink.objects.create( created_by=principal, @@ -152,10 +167,6 @@ def link(self, principal: User, workspace: any): workspace=workspace, ) - def can_delete_metadata(self, user: User): - if not user.has_perm("datasets.update_dataset", self): - raise PermissionDenied - class DatasetVersionQuerySet(BaseQuerySet): def filter_for_user(self, user: AnonymousUser | User): @@ -234,6 +245,21 @@ def delete_if_has_perm(self, *, principal: User): raise PermissionDenied self.delete() + def can_view_metadata(self, user: User): + if not user.has_perm("datasets.view_dataset_version", self): + raise PermissionDenied + return True + + def can_update_metadata(self, user: User): + if not user.has_perm("datasets.update_dataset_version", self): + raise PermissionDenied + return True + + def can_delete_metadata(self, user: User): + if not user.has_perm("datasets.delete_dataset_version", self): + raise PermissionDenied + return True + def get_full_uri(self, file_uri): return f"{self.dataset.id}/{self.id}/{file_uri.lstrip('/')}" @@ -308,6 +334,21 @@ def save(self, *args, **kwargs): class_name = self._meta.object_name self.opaque_id = OpaqueId(self.id, f"{app_label}.{class_name}") + def can_view_metadata(self, user: User): + if not user.has_perm("datasets.view_dataset_version_file", self): + raise PermissionDenied + return True + + def can_update_metadata(self, user: User): + if not user.has_perm("datasets.update_dataset_version_file", self): + raise PermissionDenied + return True + + def can_delete_metadata(self, user: User): + if not user.has_perm("datasets.delete_dataset_version_file", self): + raise PermissionDenied + return True + @property def filename(self): return self.uri.split("/")[-1] diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql index ce51e0397..a1178a8e5 100644 --- a/hexa/metadata/graphql/schema.graphql +++ b/hexa/metadata/graphql/schema.graphql @@ -1,7 +1,7 @@ """ Interface for type implementing metadata """ -# TODO: +# TODO: resolve opaque ID from graphQL to the actual object interface MetadataObject { opaqueId: OpaqueID! # Encoded concatenation of the class model type and the instance id - attributes : [MetadataAttribute!]! diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index 5122e595f..ea62cc1e6 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -1,10 +1,8 @@ import base64 -import re import uuid from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation from django.contrib.contenttypes.models import ContentType -from django.core.exceptions import PermissionDenied from django.db import models from hexa.core.models.base import Base @@ -79,27 +77,14 @@ class MetadataMixin: class Meta: abstract = True - @property - def class_name(self): - return re.sub(r"(? Date: Mon, 30 Sep 2024 14:37:12 +0200 Subject: [PATCH 14/28] fix: implements opaqueId graphql resolver --- config/graphql/schema.graphql | 1 + config/schema.py | 31 ++++++++++++++++++++++++ hexa/datasets/graphql/schema.graphql | 6 ++--- hexa/datasets/models.py | 28 ++++++---------------- hexa/metadata/graphql/schema.graphql | 5 ++-- hexa/metadata/models.py | 36 +--------------------------- hexa/metadata/schema/mutations.py | 25 ++++++------------- hexa/metadata/schema/queries.py | 11 +++------ hexa/metadata/schema/types.py | 9 ++----- hexa/metadata/schema/utils.py | 17 ------------- 10 files changed, 57 insertions(+), 112 deletions(-) delete mode 100644 hexa/metadata/schema/utils.py diff --git a/config/graphql/schema.graphql b/config/graphql/schema.graphql index 469b2a0ee..a2710b6f5 100644 --- a/config/graphql/schema.graphql +++ b/config/graphql/schema.graphql @@ -5,5 +5,6 @@ scalar JSON scalar UUID scalar Generic scalar BigInt +scalar OpaqueID type Query type Mutation diff --git a/config/schema.py b/config/schema.py index 5f431db3b..5928bd191 100644 --- a/config/schema.py +++ b/config/schema.py @@ -1,3 +1,4 @@ +import base64 import pathlib from uuid import UUID @@ -7,6 +8,7 @@ make_executable_schema, snake_case_fallback_resolvers, ) +from django.contrib.contenttypes.models import ContentType from hexa.countries.schema import countries_bindables, countries_type_defs from hexa.databases.schema import databases_bindables, databases_types_def @@ -31,6 +33,7 @@ from hexa.workspaces.schema import workspaces_bindables, workspaces_type_def uuid_scalar = ScalarType("UUID") +opaque_id_scalar = ScalarType("OpaqueID") @uuid_scalar.value_parser @@ -42,6 +45,33 @@ def parse_uuid_value(value): raise ValueError(f'"{value}" is not a valid uuid') +@opaque_id_scalar.value_parser +def parse_opaque_id_value(value): + """Decodes base64 value and returns its object instance""" + base64_decoded_id = base64.b64decode(value).decode("utf-8") + instance_id, model_type = base64_decoded_id.split(":") + app_label, model = model_type.split(".") + content_type = ContentType.objects.get( + app_label=app_label.lower(), model=model.lower() + ) + model_instance = content_type.model_class().objects.get(id=instance_id) + return model_instance + + +""" +try: + return base64.b64decode(value.encode()).decode("utf-8") +except (ValueError, TypeError): + raise ValueError(f"Invalid OpaqueID value: {value}") +""" + + +@opaque_id_scalar.serializer +def serialize_opaque_id(value): + """Encodes object to base64""" + return base64.b64encode(value.encode("utf-8")).decode("utf-8") + + type_defs = load_schema_from_path( f"{pathlib.Path(__file__).parent.resolve()}/graphql/schema.graphql" ) @@ -65,6 +95,7 @@ def parse_uuid_value(value): ], [ uuid_scalar, + opaque_id_scalar, *pipelines_bindables, *identity_bindables, *tags_bindables, diff --git a/hexa/datasets/graphql/schema.graphql b/hexa/datasets/graphql/schema.graphql index 3207995ee..d972a5577 100644 --- a/hexa/datasets/graphql/schema.graphql +++ b/hexa/datasets/graphql/schema.graphql @@ -17,7 +17,7 @@ type Dataset implements MetadataObject{ latestVersion: DatasetVersion links(page: Int = 1, perPage: Int = 15): DatasetLinkPage! attributes : [MetadataAttribute!]! - opaqueId: String! + opaqueId: OpaqueID! } """ @@ -47,7 +47,7 @@ type DatasetVersion implements MetadataObject{ fileByName(name: String!): DatasetVersionFile files(page: Int = 1, perPage: Int = 15): DatasetVersionFilePage! attributes : [MetadataAttribute!]! - opaqueId: String! + opaqueId: OpaqueID! } """ @@ -125,7 +125,7 @@ type DatasetVersionFile implements MetadataObject{ contentType: String! fileSample: DatasetFileSample attributes : [MetadataAttribute!]! - opaqueId: String! + opaqueId: OpaqueID! } """ diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index 51dc7b11c..b9c2c09d6 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -11,7 +11,7 @@ from slugify import slugify from hexa.core.models.base import Base, BaseQuerySet -from hexa.metadata.models import MetadataAttribute, MetadataMixin, OpaqueId +from hexa.metadata.models import MetadataAttribute, MetadataMixin from hexa.user_management.models import User logger = logging.getLogger(__name__) @@ -104,13 +104,6 @@ class Meta: objects = DatasetManager.from_queryset(DatasetQuerySet)() - def save(self, *args, **kwargs): - super().save(*args, **kwargs) - - app_label = self._meta.app_label - class_name = self._meta.object_name - self.opaque_id = OpaqueId(self.id, f"{app_label}.{class_name}") - @property def latest_version(self): return self.versions.order_by("-created_at").first() @@ -222,6 +215,7 @@ class DatasetVersion(Base, MetadataMixin): on_delete=models.SET_NULL, related_name="dataset_versions", ) + attributes = GenericRelation( MetadataAttribute, content_type_field="object_content_type", @@ -233,13 +227,6 @@ class Meta: ordering = ["-created_at"] unique_together = ("dataset", "name") - def save(self, *args, **kwargs): - super().save(*args, **kwargs) - - app_label = self._meta.app_label - class_name = self._meta.object_name - self.opaque_id = OpaqueId(self.id, f"{app_label}.{class_name}") - def delete_if_has_perm(self, *, principal: User): if not principal.has_perm("datasets.delete_dataset_version", self): raise PermissionDenied @@ -327,12 +314,11 @@ class DatasetVersionFile(Base, MetadataMixin): objects = DatasetVersionFileManager.from_queryset(DatasetVersionFileQuerySet)() - def save(self, *args, **kwargs): - super().save(*args, **kwargs) - - app_label = self._meta.app_label - class_name = self._meta.object_name - self.opaque_id = OpaqueId(self.id, f"{app_label}.{class_name}") + attributes = GenericRelation( + MetadataAttribute, + content_type_field="object_content_type", + object_id_field="object_id", + ) def can_view_metadata(self, user: User): if not user.has_perm("datasets.view_dataset_version_file", self): diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql index a1178a8e5..9a071b6a5 100644 --- a/hexa/metadata/graphql/schema.graphql +++ b/hexa/metadata/graphql/schema.graphql @@ -1,7 +1,6 @@ """ Interface for type implementing metadata """ -# TODO: resolve opaque ID from graphQL to the actual object interface MetadataObject { opaqueId: OpaqueID! # Encoded concatenation of the class model type and the instance id - attributes : [MetadataAttribute!]! @@ -22,7 +21,7 @@ type MetadataAttribute { Input to add or edit a custom attribute, empty field for value is accepted """ input MetadataAttributeInput { - opaqueId: String! #Encoded ID of the instance for the linked object + opaqueId: OpaqueID! #Encoded ID of the instance for the linked object key: String! value: JSON } @@ -32,7 +31,7 @@ input MetadataAttributeInput { Input to delete custom attribute """ input DeleteMetadataAttributeInput { - opaqueId: String! #Encoded ID of the instance for the linked object + opaqueId: OpaqueID! #Encoded ID of the instance for the linked object key: String! } diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index ea62cc1e6..e7b8df77e 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -1,7 +1,6 @@ -import base64 import uuid -from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation +from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType from django.db import models @@ -38,45 +37,12 @@ def __str__(self): return f"" -class OpaqueId: - value: str = None - - def __init__(self, id: uuid.UUID, model: str): - self.value = self.encode_base64_id(str(id), model) - - @staticmethod - def encode_base64_id(id: str, model: str) -> str: - combined = f"{id}:{model}" - encoded = base64.b64encode(combined.encode("utf-8")).decode("utf-8") - return encoded - - @staticmethod - def decode_base64_id(encoded_id: str) -> (str, str): - decoded_bytes = base64.b64decode(encoded_id) - decoded_str = decoded_bytes.decode("utf-8") - id, model_type = decoded_str.split(":") - return id, model_type - - def get_decoded_value(self): - return self.decode_base64_id(self.value) - - class MetadataMixin: """ Mixin to add metadata functionality to models. This mixin allows the model to associate key-value metadata attributes. """ - opaque_id: OpaqueId = None - attributes = GenericRelation( - MetadataAttribute, - content_type_field="object_content_type", - object_id_field="object_id", - ) - - class Meta: - abstract = True - def can_view_metadata(self, user: User): raise NotImplementedError diff --git a/hexa/metadata/schema/mutations.py b/hexa/metadata/schema/mutations.py index 66b33b8e4..a9a1cd81d 100644 --- a/hexa/metadata/schema/mutations.py +++ b/hexa/metadata/schema/mutations.py @@ -3,8 +3,6 @@ from django.core.exceptions import PermissionDenied from django.db import IntegrityError -from hexa.metadata.schema.utils import get_model_instance - mutations = MutationType() @@ -14,11 +12,9 @@ def resolve_add_metadata(_, info, **kwargs): user = info.context["request"].user try: - model_class, model_instance = get_model_instance(mutation_input.get("opaqueId")) - - if model_instance.can_add_metadata: + model_instance = mutation_input.get("opaqueId") + if model_instance.can_update_metadata(user): model_instance.add_attribute( - user=user, key=mutation_input["key"], value=mutation_input.get("value", None), system=False, @@ -32,8 +28,6 @@ def resolve_add_metadata(_, info, **kwargs): return {"success": False, "errors": ["MODEL_TYPE_NOT_FOUND"]} except IntegrityError: return {"success": False, "errors": ["DUPLICATE_KEY"]} - except model_class.DoesNotExist: - return {"success": False, "errors": ["MODEL_NOT_FOUND"]} @mutations.field("deleteMetadata") @@ -42,12 +36,10 @@ def resolve_delete_metadata(_, info, **kwargs): user = info.context["request"].user try: - model_class, model_instance = get_model_instance(mutation_input.get("opaqueId")) + model_instance = mutation_input.get("opaqueId") - if model_instance.can_delete_metadata: - deleted, _ = model_instance.delete_attribute( - user=user, key=mutation_input["key"] - ) + if model_instance.can_delete_metadata(user): + deleted, _ = model_instance.delete_attribute(key=mutation_input["key"]) if deleted > 0: return {"success": True, "errors": []} else: @@ -57,8 +49,6 @@ def resolve_delete_metadata(_, info, **kwargs): return {"success": False, "errors": ["PERMISSION_DENIED"]} except ContentType.DoesNotExist: return {"success": False, "errors": ["MODEL_TYPE_NOT_FOUND"]} - except model_class.DoesNotExist: - return {"success": False, "errors": ["MODEL_NOT_FOUND"]} @mutations.field("editMetadata") @@ -67,11 +57,10 @@ def resolve_edit_metadata(_, info, **kwargs): user = info.context["request"].user try: - model_class, model_instance = get_model_instance(mutation_input.get("opaqueId")) + model_instance = mutation_input.get("opaqueId") - if model_instance.can_update_metadata: + if model_instance.can_update_metadata(user): model_instance.update_attribute( - user, key=mutation_input["key"], value=mutation_input["value"], system=False, diff --git a/hexa/metadata/schema/queries.py b/hexa/metadata/schema/queries.py index 850c7ec93..5f50ec326 100644 --- a/hexa/metadata/schema/queries.py +++ b/hexa/metadata/schema/queries.py @@ -3,8 +3,6 @@ from ariadne import QueryType from django.contrib.contenttypes.models import ContentType -from hexa.metadata.schema.utils import get_model_instance - metadata_queries = QueryType() @@ -13,15 +11,12 @@ def resolve_metadata_query(_, info, **kwargs): request = info.context["request"] user = request.user try: - model_class, instance = get_model_instance(kwargs.get("opaqueId")) - if instance.can_view_metadata(user): - return instance.get_attributes() + model_instance = kwargs.get("opaqueId") + if model_instance.can_view_metadata(user): + return model_instance.get_attributes() except ContentType.DoesNotExist: logging.exception("Content type does not exist") return None - except model_class.DoesNotExist: - logging.exception("Model does not exist") - return None bindables = [metadata_queries] diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py index 8699c3529..7602e177c 100644 --- a/hexa/metadata/schema/types.py +++ b/hexa/metadata/schema/types.py @@ -1,5 +1,3 @@ -import logging - from ariadne import InterfaceType from django.core.exceptions import PermissionDenied @@ -11,18 +9,15 @@ def resolve_metadata(parent, info): user = info.context["request"].user try: if parent.can_view_metadata(user): - logging.info(f"{user} can view metadata {type(parent)}") metadata_attributes = parent.get_attributes() - logging.info(f"Metadata attributes: {metadata_attributes}") return metadata_attributes if metadata_attributes.exists() else [] except PermissionDenied: return None @metadata_object.field("opaqueId") -def resolve_opaque_id(obj, info): - # TODO move to interface resolver from global id to return db oject - return obj.opaque_id.value +def resolve_opaque_id(parent, _): + return f"{parent.id}:{parent._meta.app_label}.{parent._meta.model_name}" bindables = [metadata_object] diff --git a/hexa/metadata/schema/utils.py b/hexa/metadata/schema/utils.py deleted file mode 100644 index 714954512..000000000 --- a/hexa/metadata/schema/utils.py +++ /dev/null @@ -1,17 +0,0 @@ -from django.contrib.contenttypes.models import ContentType - -from hexa.metadata.models import OpaqueId - - -def get_model_instance(id: str): - """ - Get a model instance by its id. - """ - instance_id, model_type = OpaqueId.decode_base64_id(id) - app_label, model = model_type.split(".") - content_type = ContentType.objects.get( - app_label=app_label.lower(), model=model.lower() - ) - model_class = content_type.model_class() - model_instance = model_class.objects.get(id=instance_id) - return model_class, model_instance From 875c5fe8e2a4747d9aa3506516c0c36562d6bb0a Mon Sep 17 00:00:00 2001 From: nazarfil Date: Mon, 30 Sep 2024 16:47:58 +0200 Subject: [PATCH 15/28] fix: removes target --- config/schema.py | 17 ++++------------- hexa/metadata/graphql/schema.graphql | 3 +-- hexa/metadata/schema/mutations.py | 1 - hexa/metadata/schema/types.py | 5 ----- 4 files changed, 5 insertions(+), 21 deletions(-) diff --git a/config/schema.py b/config/schema.py index 5928bd191..09cfb7721 100644 --- a/config/schema.py +++ b/config/schema.py @@ -49,26 +49,17 @@ def parse_uuid_value(value): def parse_opaque_id_value(value): """Decodes base64 value and returns its object instance""" base64_decoded_id = base64.b64decode(value).decode("utf-8") - instance_id, model_type = base64_decoded_id.split(":") - app_label, model = model_type.split(".") - content_type = ContentType.objects.get( - app_label=app_label.lower(), model=model.lower() - ) + instance_id, content_type_id = base64_decoded_id.split(":") + content_type = ContentType.objects.get_for_id(content_type_id) model_instance = content_type.model_class().objects.get(id=instance_id) return model_instance -""" -try: - return base64.b64decode(value.encode()).decode("utf-8") -except (ValueError, TypeError): - raise ValueError(f"Invalid OpaqueID value: {value}") -""" - - @opaque_id_scalar.serializer def serialize_opaque_id(value): """Encodes object to base64""" + content_type = ContentType.objects.get_for_model(value) + value = f"{value.id}:{content_type.id}" return base64.b64encode(value.encode("utf-8")).decode("utf-8") diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql index 9a071b6a5..6f2af81e0 100644 --- a/hexa/metadata/graphql/schema.graphql +++ b/hexa/metadata/graphql/schema.graphql @@ -10,7 +10,6 @@ interface MetadataObject { Generic metadata attribute """ type MetadataAttribute { - target: MetadataObject! id: UUID! key: String! value: JSON @@ -82,7 +81,7 @@ type EditAttributeResult { } extend type Query { - metadataAttributes(opaqueId: String!): [MetadataAttribute]! + metadataAttributes(opaqueId: OpaqueID!): [MetadataAttribute]! } extend type Mutation { diff --git a/hexa/metadata/schema/mutations.py b/hexa/metadata/schema/mutations.py index a9a1cd81d..345f3b7b7 100644 --- a/hexa/metadata/schema/mutations.py +++ b/hexa/metadata/schema/mutations.py @@ -44,7 +44,6 @@ def resolve_delete_metadata(_, info, **kwargs): return {"success": True, "errors": []} else: return {"success": False, "errors": ["METADATA_ATTRIBUTE_NOT_FOUND"]} - except PermissionDenied: return {"success": False, "errors": ["PERMISSION_DENIED"]} except ContentType.DoesNotExist: diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py index 7602e177c..2725c5092 100644 --- a/hexa/metadata/schema/types.py +++ b/hexa/metadata/schema/types.py @@ -15,9 +15,4 @@ def resolve_metadata(parent, info): return None -@metadata_object.field("opaqueId") -def resolve_opaque_id(parent, _): - return f"{parent.id}:{parent._meta.app_label}.{parent._meta.model_name}" - - bindables = [metadata_object] From 53e0db03173f6024ee039e7aa957011a1fa292e0 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Tue, 1 Oct 2024 10:51:27 +0200 Subject: [PATCH 16/28] fix: fixes tests --- config/schema.py | 2 +- hexa/metadata/schema/types.py | 5 + hexa/metadata/tests/test_schema.py | 179 +++++++++++------------------ hexa/metadata/tests/testutils.py | 10 ++ 4 files changed, 84 insertions(+), 112 deletions(-) diff --git a/config/schema.py b/config/schema.py index 09cfb7721..dbcb42a96 100644 --- a/config/schema.py +++ b/config/schema.py @@ -57,7 +57,7 @@ def parse_opaque_id_value(value): @opaque_id_scalar.serializer def serialize_opaque_id(value): - """Encodes object to base64""" + """Encodes object instance id and content type to base64""" content_type = ContentType.objects.get_for_model(value) value = f"{value.id}:{content_type.id}" return base64.b64encode(value.encode("utf-8")).decode("utf-8") diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py index 2725c5092..123359eb3 100644 --- a/hexa/metadata/schema/types.py +++ b/hexa/metadata/schema/types.py @@ -15,4 +15,9 @@ def resolve_metadata(parent, info): return None +@metadata_object.field("opaqueId") +def resolve_opaque_id(parent, _): + return parent + + bindables = [metadata_object] diff --git a/hexa/metadata/tests/test_schema.py b/hexa/metadata/tests/test_schema.py index 065d8b476..8842f2a73 100644 --- a/hexa/metadata/tests/test_schema.py +++ b/hexa/metadata/tests/test_schema.py @@ -1,9 +1,9 @@ from django.contrib.contenttypes.models import ContentType from hexa.core.test import GraphQLTestCase -from hexa.datasets.models import DatasetVersionFile +from hexa.datasets.models import Dataset, DatasetVersionFile from hexa.metadata.models import MetadataAttribute -from hexa.metadata.tests.testutils import MetadataTestMixin +from hexa.metadata.tests.testutils import MetadataTestMixin, encode_base_64 from hexa.workspaces.models import WorkspaceMembershipRole @@ -51,21 +51,19 @@ def test_adding_metadata_to_file(self): r_before = self.run_query( self.queries["get_metadata_for_file"], {"id": str(file.id)} ) - print(r_before) + opaque_id = encode_base_64( + str(file.id) + + ":" + + str(ContentType.objects.get_for_model(DatasetVersionFile).id) + ) + self.assertEqual( r_before["data"], { "datasetVersionFile": { "filename": "file.csv", - "metadata": { - "id": file.opaque_id, - "attributes": [], - "object": { - "__typename": "DatasetVersionFile", - "id": str(file.id), - "uri": str(file.uri), - }, - }, + "opaqueId": opaque_id, + "attributes": [], } }, ) @@ -73,7 +71,7 @@ def test_adding_metadata_to_file(self): self.queries["add_metadata_attribute"], { "input": { - "opaqueId": file.opaque_id, + "opaqueId": opaque_id, "key": "descriptions", "value": "test", } @@ -91,17 +89,10 @@ def test_adding_metadata_to_file(self): { "datasetVersionFile": { "filename": "file.csv", - "metadata": { - "id": file.opaque_id, - "object": { - "__typename": "DatasetVersionFile", - "id": str(file.id), - "uri": str(file.uri), - }, - "attributes": [ - {"key": "descriptions", "value": "test", "system": False} - ], - }, + "opaqueId": opaque_id, + "attributes": [ + {"key": "descriptions", "value": "test", "system": False} + ], } }, ) @@ -128,9 +119,16 @@ def test_delete_metadata_from_file(self): key="key1", value="value1", system=True, - content_type=ContentType.objects.get_for_model(DatasetVersionFile), + object_content_type_id=ContentType.objects.get_for_model( + DatasetVersionFile + ).id, object_id=file.id, ) + opaque_id = encode_base_64( + str(file.id) + + ":" + + str(ContentType.objects.get_for_model(DatasetVersionFile).id) + ) r_before = self.run_query( self.queries["get_metadata_for_file"], {"id": str(file.id)} ) @@ -139,17 +137,8 @@ def test_delete_metadata_from_file(self): { "datasetVersionFile": { "filename": "file.csv", - "metadata": { - "id": file.opaque_id, - "object": { - "__typename": "DatasetVersionFile", - "id": str(file.id), - "uri": str(file.uri), - }, - "attributes": [ - {"key": "key1", "value": "value1", "system": True} - ], - }, + "opaqueId": opaque_id, + "attributes": [{"key": "key1", "value": "value1", "system": True}], } }, ) @@ -157,7 +146,7 @@ def test_delete_metadata_from_file(self): self.queries["delete_metadata_attribute"], { "input": { - "opaqueId": file.opaque_id, + "opaqueId": opaque_id, "key": metadataAttribute.key, } }, @@ -174,15 +163,8 @@ def test_delete_metadata_from_file(self): { "datasetVersionFile": { "filename": "file.csv", - "metadata": { - "id": file.opaque_id, - "object": { - "__typename": "DatasetVersionFile", - "id": str(file.id), - "uri": str(file.uri), - }, - "attributes": [], - }, + "opaqueId": opaque_id, + "attributes": [], } }, ) @@ -204,11 +186,18 @@ def test_edit_metadata_on_file(self): uri=dataset.latest_version.get_full_uri("file.csv"), created_by=user, ) + opaque_id = encode_base_64( + str(file.id) + + ":" + + str(ContentType.objects.get_for_model(DatasetVersionFile).id) + ) metadataAttribute = MetadataAttribute.objects.create( key="key1", - value="originalValue", + value="value1", system=True, - content_type=ContentType.objects.get_for_model(DatasetVersionFile), + object_content_type_id=ContentType.objects.get_for_model( + DatasetVersionFile + ).id, object_id=file.id, ) @@ -220,21 +209,14 @@ def test_edit_metadata_on_file(self): { "datasetVersionFile": { "filename": "file.csv", - "metadata": { - "id": file.opaque_id, - "object": { - "__typename": "DatasetVersionFile", - "id": str(file.id), - "uri": str(file.uri), - }, - "attributes": [ - { - "key": metadataAttribute.key, - "value": metadataAttribute.value, - "system": metadataAttribute.system, - } - ], - }, + "opaqueId": opaque_id, + "attributes": [ + { + "key": metadataAttribute.key, + "value": metadataAttribute.value, + "system": metadataAttribute.system, + } + ], } }, ) @@ -242,7 +224,7 @@ def test_edit_metadata_on_file(self): self.queries["edit_metadata_attribute"], { "input": { - "opaqueId": file.opaque_id, + "opaqueId": opaque_id, "key": metadataAttribute.key, "value": "anotherValue", } @@ -259,21 +241,14 @@ def test_edit_metadata_on_file(self): { "datasetVersionFile": { "filename": "file.csv", - "metadata": { - "id": file.opaque_id, - "object": { - "__typename": "DatasetVersionFile", - "id": str(file.id), - "uri": str(file.uri), - }, - "attributes": [ - { - "key": metadataAttribute.key, - "value": "anotherValue", - "system": False, - } - ], - }, + "opaqueId": opaque_id, + "attributes": [ + { + "key": metadataAttribute.key, + "value": "anotherValue", + "system": False, + } + ], } }, ) @@ -291,6 +266,10 @@ def test_adding_metadata_to_dataset(self): self.create_dataset_version(principal=user, dataset=dataset) self.client.force_login(user) + opaque_id = encode_base_64( + str(dataset.id) + ":" + str(ContentType.objects.get_for_model(Dataset).id) + ) + r_before = self.run_query( self.queries["get_metadata_for_dataset"], {"id": str(dataset.id)} ) @@ -298,17 +277,8 @@ def test_adding_metadata_to_dataset(self): r_before["data"], { "dataset": { - "id": str(dataset.id), - "opaqueId": dataset.opaque_id, - "metadata": { - "id": dataset.opaque_id, - "attributes": [], - "object": { - "__typename": "Dataset", - "id": str(dataset.id), - "name": "Dataset", - }, - }, + "opaqueId": opaque_id, + "attributes": [], } }, ) @@ -317,7 +287,7 @@ def test_adding_metadata_to_dataset(self): self.queries["add_metadata_attribute"], { "input": { - "opaqueId": dataset.opaque_id, + "opaqueId": opaque_id, "key": "descriptions", "value": "test", } @@ -334,19 +304,10 @@ def test_adding_metadata_to_dataset(self): r_after["data"], { "dataset": { - "id": str(dataset.id), - "opaqueId": dataset.opaque_id, - "metadata": { - "id": dataset.opaque_id, - "object": { - "__typename": "Dataset", - "id": str(dataset.id), - "name": dataset.name, - }, - "attributes": [ - {"key": "descriptions", "value": "test", "system": False} - ], - }, + "opaqueId": opaque_id, + "attributes": [ + {"key": "descriptions", "value": "test", "system": False} + ], } }, ) @@ -356,6 +317,7 @@ def test_adding_metadata_to_dataset(self): query GetObjectMetadata($id: ID!) { datasetVersionFile(id: $id) { filename + opaqueId attributes { key, value, system } @@ -365,15 +327,10 @@ def test_adding_metadata_to_dataset(self): "get_metadata_for_dataset": """ query GetObjectMetadata($id: ID!) { dataset(id: $id) { - id opaqueId - metadata - { - id - attributes { + attributes { key, value, system - } - } + } } } """, diff --git a/hexa/metadata/tests/testutils.py b/hexa/metadata/tests/testutils.py index aee30d0be..0a7115338 100644 --- a/hexa/metadata/tests/testutils.py +++ b/hexa/metadata/tests/testutils.py @@ -1,3 +1,5 @@ +import base64 + from hexa.datasets.models import Dataset, DatasetVersion from hexa.user_management.models import Feature, FeatureFlag, User from hexa.workspaces.models import ( @@ -60,3 +62,11 @@ def create_dataset_version( description=description, **kwargs, ) + + +def encode_base_64(data): + return base64.b64encode(data.encode("utf-8")).decode("utf-8") + + +def decode_base_64(data): + return base64.b64decode(data.encode("utf-8")).decode("utf-8") From fa1f7c8bcae0003d3819472934a9c7be924b61ac Mon Sep 17 00:00:00 2001 From: nazarfil Date: Tue, 1 Oct 2024 11:00:50 +0200 Subject: [PATCH 17/28] fix: tests dataset --- hexa/catalog/admin.py | 4 ++-- hexa/datasets/tests/test_schema.py | 30 ++++++++++++++---------------- hexa/pipelines/admin.py | 4 ++-- 3 files changed, 18 insertions(+), 20 deletions(-) diff --git a/hexa/catalog/admin.py b/hexa/catalog/admin.py index 40a1b7dba..85247c601 100644 --- a/hexa/catalog/admin.py +++ b/hexa/catalog/admin.py @@ -14,10 +14,10 @@ class IndexAdmin(admin.ModelAdmin): search_fields = ("external_name",) def app_label(self, obj): - return obj.object_content_type.app_label + return obj.content_type.app_label def model(self, obj): - return obj.object_content_type.model + return obj.content_type.model @admin.register(IndexPermission) diff --git a/hexa/datasets/tests/test_schema.py b/hexa/datasets/tests/test_schema.py index fed09db4c..19b885194 100644 --- a/hexa/datasets/tests/test_schema.py +++ b/hexa/datasets/tests/test_schema.py @@ -483,7 +483,9 @@ def test_get_file_metadata(self): key="key1", value="value1", system=True, - content_type=ContentType.objects.get_for_model(DatasetVersionFile), + object_content_type_id=ContentType.objects.get_for_model( + DatasetVersionFile + ).id, object_id=file.id, ) r = self.run_query( @@ -491,11 +493,9 @@ def test_get_file_metadata(self): query GetDatasetVersionFile($id: ID!) { datasetVersionFile(id: $id) { filename - metadata { - attributes { + attributes { key, value, system } - } fileSample { status sample @@ -509,15 +509,13 @@ def test_get_file_metadata(self): { "datasetVersionFile": { "filename": file.filename, - "metadata": { - "attributes": [ - { - "key": metadataAttribute.key, - "value": metadataAttribute.value, - "system": metadataAttribute.system, - } - ] - }, + "attributes": [ + { + "key": metadataAttribute.key, + "value": metadataAttribute.value, + "system": metadataAttribute.system, + } + ], "fileSample": {"status": sample.status, "sample": sample.sample}, } }, @@ -534,7 +532,7 @@ def test_get_file_metadata_fail(self): uri=dataset.latest_version.get_full_uri("file.csv"), created_by=superuser, ) - metadata = DatasetFileSample.objects.create( + sample = DatasetFileSample.objects.create( dataset_version_file=file, sample=json.dumps({}), status=DatasetFileSample.STATUS_FAILED, @@ -559,8 +557,8 @@ def test_get_file_metadata_fail(self): "datasetVersionFile": { "filename": file.filename, "fileSample": { - "status": metadata.status, - "statusReason": metadata.status_reason, + "status": sample.status, + "statusReason": sample.status_reason, }, } }, diff --git a/hexa/pipelines/admin.py b/hexa/pipelines/admin.py index 44845d1c7..e70c2b0d5 100644 --- a/hexa/pipelines/admin.py +++ b/hexa/pipelines/admin.py @@ -49,10 +49,10 @@ class IndexAdmin(admin.ModelAdmin): search_fields = ("external_name",) def app_label(self, obj): - return obj.object_content_type.app_label + return obj.content_type.app_label def model(self, obj): - return obj.object_content_type.model + return obj.content_type.model @admin.register(IndexPermission) From a63b30950e17eac782b62e7fd096718ccc15f611 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Wed, 2 Oct 2024 08:45:50 +0200 Subject: [PATCH 18/28] chore: merged mirations --- hexa/metadata/migrations/0001_initial.py | 14 +++++-- ...ute_unique_key_per_data_object_and_more.py | 39 ------------------- ...0003_metadataattribute_index_object_key.py | 22 ----------- hexa/metadata/permissions.py | 0 4 files changed, 11 insertions(+), 64 deletions(-) delete mode 100644 hexa/metadata/migrations/0002_remove_metadataattribute_unique_key_per_data_object_and_more.py delete mode 100644 hexa/metadata/migrations/0003_metadataattribute_index_object_key.py delete mode 100644 hexa/metadata/permissions.py diff --git a/hexa/metadata/migrations/0001_initial.py b/hexa/metadata/migrations/0001_initial.py index 6af52bf79..ab362c2eb 100644 --- a/hexa/metadata/migrations/0001_initial.py +++ b/hexa/metadata/migrations/0001_initial.py @@ -1,4 +1,4 @@ -# Generated by Django 5.0.8 on 2024-09-09 12:33 +# Generated by Django 4.2.16 on 2024-10-02 06:45 import uuid @@ -33,7 +33,7 @@ class Migration(migrations.Migration): ("value", models.CharField(blank=True, max_length=255, null=True)), ("system", models.BooleanField(default=False)), ( - "content_type", + "object_content_type", models.ForeignKey( blank=True, null=True, @@ -42,11 +42,19 @@ class Migration(migrations.Migration): ), ), ], + options={ + "indexes": [ + models.Index( + fields=["object_content_type", "object_id", "key"], + name="index_object_key", + ) + ], + }, ), migrations.AddConstraint( model_name="metadataattribute", constraint=models.UniqueConstraint( - fields=("content_type", "object_id", "key"), + fields=("object_content_type", "object_id", "key"), name="unique_key_per_data_object", ), ), diff --git a/hexa/metadata/migrations/0002_remove_metadataattribute_unique_key_per_data_object_and_more.py b/hexa/metadata/migrations/0002_remove_metadataattribute_unique_key_per_data_object_and_more.py deleted file mode 100644 index a560abb96..000000000 --- a/hexa/metadata/migrations/0002_remove_metadataattribute_unique_key_per_data_object_and_more.py +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Django 4.2.16 on 2024-09-24 16:42 - -import django.db.models.deletion -from django.db import migrations, models - - -class Migration(migrations.Migration): - dependencies = [ - ("contenttypes", "0002_remove_content_type_name"), - ("metadata", "0001_initial"), - ] - - operations = [ - migrations.RemoveConstraint( - model_name="metadataattribute", - name="unique_key_per_data_object", - ), - migrations.RemoveField( - model_name="metadataattribute", - name="content_type", - ), - migrations.AddField( - model_name="metadataattribute", - name="object_content_type", - field=models.ForeignKey( - blank=True, - null=True, - on_delete=django.db.models.deletion.CASCADE, - to="contenttypes.contenttype", - ), - ), - migrations.AddConstraint( - model_name="metadataattribute", - constraint=models.UniqueConstraint( - fields=("object_content_type", "object_id", "key"), - name="unique_key_per_data_object", - ), - ), - ] diff --git a/hexa/metadata/migrations/0003_metadataattribute_index_object_key.py b/hexa/metadata/migrations/0003_metadataattribute_index_object_key.py deleted file mode 100644 index ac8cec21e..000000000 --- a/hexa/metadata/migrations/0003_metadataattribute_index_object_key.py +++ /dev/null @@ -1,22 +0,0 @@ -# Generated by Django 4.2.16 on 2024-09-26 07:13 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - dependencies = [ - ( - "metadata", - "0002_remove_metadataattribute_unique_key_per_data_object_and_more", - ), - ] - - operations = [ - migrations.AddIndex( - model_name="metadataattribute", - index=models.Index( - fields=["object_content_type", "object_id", "key"], - name="index_object_key", - ), - ), - ] diff --git a/hexa/metadata/permissions.py b/hexa/metadata/permissions.py deleted file mode 100644 index e69de29bb..000000000 From 1ebeeb95b871bb99774e98e222911a617f0684d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20G=C3=A9r=C3=B4me?= Date: Thu, 3 Oct 2024 23:17:41 +0200 Subject: [PATCH 19/28] chore: improve the process --- config/schema.py | 7 +- docker-compose.yaml | 2 +- hexa/datasets/graphql/schema.graphql | 6 +- hexa/datasets/models.py | 54 ++----- hexa/datasets/queue.py | 150 +++++++++--------- hexa/datasets/schema/mutations.py | 2 +- hexa/datasets/tests/test_generate_sample.py | 4 +- hexa/metadata/graphql/schema.graphql | 62 ++++---- .../0002_alter_metadataattribute_value.py | 17 ++ .../0003_alter_metadataattribute_value.py | 17 ++ hexa/metadata/models.py | 38 +++-- hexa/metadata/schema/mutations.py | 41 +++-- hexa/metadata/schema/queries.py | 13 +- hexa/metadata/schema/types.py | 11 +- 14 files changed, 220 insertions(+), 204 deletions(-) create mode 100644 hexa/metadata/migrations/0002_alter_metadataattribute_value.py create mode 100644 hexa/metadata/migrations/0003_alter_metadataattribute_value.py diff --git a/config/schema.py b/config/schema.py index dbcb42a96..2bfda1f6e 100644 --- a/config/schema.py +++ b/config/schema.py @@ -47,7 +47,12 @@ def parse_uuid_value(value): @opaque_id_scalar.value_parser def parse_opaque_id_value(value): - """Decodes base64 value and returns its object instance""" + """Decodes base64 value and returns its object instance + + Raises + ------ + ObjectDoesNotExist: If the object instance or the content type does not exist + """ base64_decoded_id = base64.b64decode(value).decode("utf-8") instance_id, content_type_id = base64_decoded_id.split(":") content_type = ContentType.objects.get_for_id(content_type_id) diff --git a/docker-compose.yaml b/docker-compose.yaml index 9fae8b360..dfad1ebfb 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -54,7 +54,7 @@ services: - db # This service is only used for the connector_accessmod app. - dataworker: + accessmod_dataworker: <<: *common command: "manage validate_fileset_worker" restart: unless-stopped diff --git a/hexa/datasets/graphql/schema.graphql b/hexa/datasets/graphql/schema.graphql index d972a5577..145cb420a 100644 --- a/hexa/datasets/graphql/schema.graphql +++ b/hexa/datasets/graphql/schema.graphql @@ -16,7 +16,7 @@ type Dataset implements MetadataObject{ version(id: ID!): DatasetVersion latestVersion: DatasetVersion links(page: Int = 1, perPage: Int = 15): DatasetLinkPage! - attributes : [MetadataAttribute!]! + attributes: [MetadataAttribute!]! opaqueId: OpaqueID! } @@ -46,7 +46,7 @@ type DatasetVersion implements MetadataObject{ permissions: DatasetVersionPermissions! fileByName(name: String!): DatasetVersionFile files(page: Int = 1, perPage: Int = 15): DatasetVersionFilePage! - attributes : [MetadataAttribute!]! + attributes: [MetadataAttribute!]! opaqueId: OpaqueID! } @@ -124,7 +124,7 @@ type DatasetVersionFile implements MetadataObject{ createdBy: User contentType: String! fileSample: DatasetFileSample - attributes : [MetadataAttribute!]! + attributes: [MetadataAttribute!]! opaqueId: OpaqueID! } diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index b9c2c09d6..965434bd4 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -2,7 +2,6 @@ import secrets from django.contrib.auth.models import AnonymousUser -from django.contrib.contenttypes.fields import GenericRelation from django.core.exceptions import PermissionDenied from django.db import models from django.db.models import JSONField @@ -11,7 +10,7 @@ from slugify import slugify from hexa.core.models.base import Base, BaseQuerySet -from hexa.metadata.models import MetadataAttribute, MetadataMixin +from hexa.metadata.models import MetadataMixin from hexa.user_management.models import User logger = logging.getLogger(__name__) @@ -74,7 +73,7 @@ def create_if_has_perm( return dataset -class Dataset(Base, MetadataMixin): +class Dataset(MetadataMixin, Base): class Meta: constraints = [ models.UniqueConstraint( @@ -96,25 +95,12 @@ class Meta: slug = models.TextField(null=False, blank=False, max_length=255) description = models.TextField(blank=True, null=True) - attributes = GenericRelation( - MetadataAttribute, - content_type_field="object_content_type", - object_id_field="object_id", - ) - objects = DatasetManager.from_queryset(DatasetQuerySet)() @property def latest_version(self): return self.versions.order_by("-created_at").first() - @property - def previous_version(self): - all_version = self.versions.order_by("-created_at").all() - if all_version.count() > 1: - return all_version[1].id - return None - def update_if_has_perm(self, *, principal: User, **kwargs): if not principal.has_perm("datasets.update_dataset", self): raise PermissionDenied @@ -198,7 +184,7 @@ def create_if_has_perm( return version -class DatasetVersion(Base, MetadataMixin): +class DatasetVersion(MetadataMixin, Base): dataset = models.ForeignKey( Dataset, null=False, @@ -216,11 +202,6 @@ class DatasetVersion(Base, MetadataMixin): related_name="dataset_versions", ) - attributes = GenericRelation( - MetadataAttribute, - content_type_field="object_content_type", - object_id_field="object_id", - ) objects = DatasetVersionManager.from_queryset(DatasetVersionQuerySet)() class Meta: @@ -266,6 +247,9 @@ def filter_for_user(self, user: AnonymousUser | User): return_all_if_superuser=False, ) + def filter_by_filename(self, filename: str): + return self.filter(uri__endswith=f"/{filename}") + class DatasetVersionFileManager(models.Manager): def create_if_has_perm( @@ -300,7 +284,7 @@ def create_if_has_perm( ) -class DatasetVersionFile(Base, MetadataMixin): +class DatasetVersionFile(MetadataMixin, Base): uri = models.TextField(null=False, blank=False, unique=True) content_type = models.TextField(null=False, blank=False) created_by = models.ForeignKey(User, null=True, on_delete=models.SET_NULL) @@ -314,12 +298,6 @@ class DatasetVersionFile(Base, MetadataMixin): objects = DatasetVersionFileManager.from_queryset(DatasetVersionFileQuerySet)() - attributes = GenericRelation( - MetadataAttribute, - content_type_field="object_content_type", - object_id_field="object_id", - ) - def can_view_metadata(self, user: User): if not user.has_perm("datasets.view_dataset_version_file", self): raise PermissionDenied @@ -341,31 +319,19 @@ def filename(self): @property def sample_entry(self): - entry = self.samples.first() - if entry is None: - logger.info("No sample found for file %s, generating one", self.uri) - self.generate_sample() - return entry + return self.samples.first() @property def full_uri(self): return self.dataset_version.get_full_uri(self.uri) - def generate_sample(self): - from hexa.datasets.queue import dataset_file_metadata_queue, is_sample_supported - - if not is_sample_supported(self.filename): - logger.info("Sample generation not supported for file %s", self.uri) - return - logger.info("Generating sample for file %s", self.uri) + def generate_metadata(self): + from hexa.datasets.queue import dataset_file_metadata_queue dataset_file_metadata_queue.enqueue( "generate_file_metadata", { "file_id": str(self.id), - "previous_version_id": str( - self.dataset_version.dataset.previous_version - ), }, ) diff --git a/hexa/datasets/queue.py b/hexa/datasets/queue.py index dacfcd84b..5548eaf45 100644 --- a/hexa/datasets/queue.py +++ b/hexa/datasets/queue.py @@ -9,15 +9,17 @@ from hexa.datasets.models import ( DatasetFileMetadataJob, DatasetFileSample, + DatasetVersion, DatasetVersionFile, ) logger = getLogger(__name__) +# Used for reproducibility for the sample extraction SAMPLING_SEED = 22 -def is_sample_supported(filename: str) -> bool: +def is_file_supported(filename: str) -> bool: supported_mimetypes = [ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "application/vnd.ms-excel", @@ -30,15 +32,16 @@ def is_sample_supported(filename: str) -> bool: return mime_type in supported_mimetypes or suffix in supported_extensions -def get_df(dataset_version_file: DatasetVersionFile) -> pd.DataFrame: +def load_df(dataset_version_file: DatasetVersionFile) -> pd.DataFrame: mime_type, _ = mimetypes.guess_type(dataset_version_file.filename, strict=False) try: + logger.info(f"Using {settings.INTERNAL_BASE_URL}") download_url = generate_download_url( dataset_version_file, host=settings.INTERNAL_BASE_URL ) except Exception as e: - logger.error(e) - raise e + logger.exception("Unable to generate a download url", exc_info=e) + raise if mime_type == "text/csv": # low_memory is set to False for datatype guessing @@ -58,21 +61,14 @@ def get_df(dataset_version_file: DatasetVersionFile) -> pd.DataFrame: def generate_sample( - version_file: DatasetVersionFile, previous_version_id: str | None + version_file: DatasetVersionFile, df: pd.DataFrame ) -> DatasetFileSample: - if not is_sample_supported(version_file.filename): - raise ValueError(f"Unsupported file format: {version_file.filename}") - logger.info(f"Creating dataset sample for version file {version_file.id}") dataset_file_sample = DatasetFileSample.objects.create( dataset_version_file=version_file, status=DatasetFileSample.STATUS_PROCESSING, ) - previous_version_file = file_from_previous_version( - version_file.filename, previous_version_id - ) try: - df = get_df(version_file) if df.empty is False: sample = df.sample( settings.WORKSPACE_DATASETS_FILE_SNAPSHOT_SIZE, @@ -80,13 +76,12 @@ def generate_sample( replace=True, ) dataset_file_sample.sample = sample.to_dict(orient="records") - add_system_attributes(version_file, df, previous_version_file) - else: - dataframe_to_sample.sample = [] dataset_file_sample.status = DatasetFileSample.STATUS_FINISHED logger.info(f"Sample saved for file {version_file.id}") except Exception as e: - logger.exception(f"Sample creation failed for file {version_file.id}: {e}") + logger.exception( + f"Sample creation failed for file {version_file.id}: {e}", exc_info=e + ) dataset_file_sample.status = DatasetFileSample.STATUS_FAILED dataset_file_sample.status_reason = str(e) finally: @@ -94,27 +89,16 @@ def generate_sample( return dataset_file_sample -def dataframe_to_sample(data: pd.DataFrame): - random_seed = 22 - return data.sample( - settings.WORKSPACE_DATASETS_FILE_SNAPSHOT_SIZE, - random_state=random_seed, - replace=True, - ) - - -def calculate_profiling_per_column(dataframe: pd.DataFrame) -> list: +def generate_profile(df: pd.DataFrame) -> list: logger.info("Calculating profiling per column") - for col in dataframe.select_dtypes(include=["object"]).columns: - dataframe[col] = dataframe[col].astype("string") - - data_types = dataframe.dtypes.apply(str).to_dict() - missing_values = dataframe.isnull().sum().to_dict() - unique_values = dataframe.nunique().to_dict() - distinct_values = dataframe.apply(lambda x: x.nunique(dropna=False)).to_dict() - constant_values = ( - dataframe.apply(lambda x: x.nunique() == 1).astype("bool").to_dict() - ) + for col in df.select_dtypes(include=["object"]).columns: + df[col] = df[col].astype("string") + + data_types = df.dtypes.apply(str).to_dict() + missing_values = df.isnull().sum().to_dict() + unique_values = df.nunique().to_dict() + distinct_values = df.apply(lambda x: x.nunique(dropna=False)).to_dict() + constant_values = df.apply(lambda x: x.nunique() == 1).astype("bool").to_dict() metadata_per_column = [ { @@ -125,57 +109,78 @@ def calculate_profiling_per_column(dataframe: pd.DataFrame) -> list: "distinct_values": distinct_values.get(column), "constant_values": constant_values.get(column), } - for column in dataframe.columns + for column in df.columns ] return metadata_per_column -def file_from_previous_version( - filename: str, dataset_previous_version_id: str | None +def get_previous_version_file( + version_file: DatasetVersionFile, ) -> DatasetVersionFile | None: - if dataset_previous_version_id is None or dataset_previous_version_id == "None": + try: + # We need to do it in two steps because we only want to get the matching file IF it's from the previous version (not any previous version) + prev_version = ( + DatasetVersion.objects.filter( + dataset=version_file.dataset_version.dataset, + created_at__lt=version_file.dataset_version.created_at, + ) + .order_by("-created_at") + .first() + ) + if prev_version is None: + return None + return ( + DatasetVersionFile.objects.filter_by_filename(version_file.filename) + .filter(dataset_version=prev_version) + .get() + ) + except DatasetVersionFile.DoesNotExist: + # The file do not exist in the previous version return None - all_previous_files = DatasetVersionFile.objects.filter( - dataset_version=dataset_previous_version_id - ).all() - for file in all_previous_files: - if file.filename == filename: - return file - return None -def add_system_attributes( - version_file: DatasetVersionFile, - file_content: pd.DataFrame, - previous_version_file: DatasetVersionFile, -): - # Attributes from previous version file are copied to the new version file - if previous_version_file: - logger.info( - f"Copying attributes from previous version - {previous_version_file}" - ) - user_attributes = previous_version_file.get_attributes(system=False).all() - for attribute in user_attributes: +def add_system_attributes(version_file: DatasetVersionFile, df: pd.DataFrame | None): + """Add user defined attributes to the file based on the previous version and automated profiling if a dataframe has been passed.""" + # Copy user attributes from the previous version of the file if it exists + prev_file = get_previous_version_file(version_file) + if prev_file: + logger.info(f"Copying attributes from previous version - {prev_file}") + for attribute in prev_file.attributes.filter(system=False).all(): + logger.info(f"Attribute {attribute.key}={attribute.value} copied") version_file.add_attribute( key=attribute.key, value=attribute.value, system=False ) - # Add attributes from automated profiling - profiling = calculate_profiling_per_column(file_content) - for profile in profiling: - for key, value in profile.items(): - version_file.update_attribute( - key=f'{profile["column_name"]}.{key}', + # Add attributes from automated profiling (if the file is supported) + if df is None: + return + profiling = generate_profile(df) + for column_profile in profiling: + for key, value in column_profile.items(): + version_file.update_or_create_attribute( + key=f'{column_profile["column_name"]}.{key}', value=value, system=True, ) - # Add description field to each column - version_file.update_attribute( - key=f'{profile["column_name"]}.description', - value="Add description here", - system=True, + + +def generate_file_metadata_task(version_file: DatasetVersionFile) -> None: + """Task to extract a sample of tabular files, generate profiling metadata when possible and copy user defined attributes.""" + logger.info("Generating metadata for file %s", version_file.id) + df = None + try: + # We only support tabular data for now (CSV, Excel, Parquet) for the sample generation & profiling + if is_file_supported(version_file.filename): + df = load_df(version_file) + generate_sample(version_file, df) + except Exception as e: + logger.exception( + f"Failed to load dataframe for file {version_file.id}", exc_info=e ) + return + + add_system_attributes(version_file, df) class DatasetsFileMetadataQueue(AtLeastOnceQueue): @@ -184,9 +189,8 @@ class DatasetsFileMetadataQueue(AtLeastOnceQueue): dataset_file_metadata_queue = DatasetsFileMetadataQueue( tasks={ - "generate_file_metadata": lambda _, job: generate_sample( - DatasetVersionFile.objects.get(id=job.args["file_id"]), - job.args["previous_version_id"], + "generate_file_metadata": lambda _, job: generate_file_metadata_task( + DatasetVersionFile.objects.get(id=job.args["file_id"]) ), }, notify_channel="dataset_file_metadata_queue", diff --git a/hexa/datasets/schema/mutations.py b/hexa/datasets/schema/mutations.py index dcb4bd5c0..2fd3803a8 100644 --- a/hexa/datasets/schema/mutations.py +++ b/hexa/datasets/schema/mutations.py @@ -249,7 +249,7 @@ def resolve_create_version_file(_, info, **kwargs): content_type=mutation_input["contentType"], ) - file.generate_sample() + file.generate_metadata() return { "success": True, "errors": [], diff --git a/hexa/datasets/tests/test_generate_sample.py b/hexa/datasets/tests/test_generate_sample.py index 53f8935ad..79f1fc657 100644 --- a/hexa/datasets/tests/test_generate_sample.py +++ b/hexa/datasets/tests/test_generate_sample.py @@ -106,14 +106,14 @@ def test_generate_sample( self.USER_SERENA, self.DATASET_VERSION, uri=fixture_file_path, - content_type="application/octect-stream", + content_type="application/octet-stream", ) with patch( "hexa.datasets.queue.generate_download_url" ) as mock_generate_download_url: mock_generate_download_url.return_value = fixture_file_path - sample_entry = generate_sample(version_file, None) + sample_entry = generate_sample(version_file) self.assertEqual(sample_entry.status, expected_status) self.assertEqual(sample_entry.sample, expected_sample) diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql index 6f2af81e0..95f512ff4 100644 --- a/hexa/metadata/graphql/schema.graphql +++ b/hexa/metadata/graphql/schema.graphql @@ -2,8 +2,8 @@ Interface for type implementing metadata """ interface MetadataObject { - opaqueId: OpaqueID! # Encoded concatenation of the class model type and the instance id - - attributes : [MetadataAttribute!]! + opaqueId: OpaqueID! + attributes: [MetadataAttribute!]! } """ @@ -17,10 +17,19 @@ type MetadataAttribute { } """ -Input to add or edit a custom attribute, empty field for value is accepted +Input to add a custom attribute, empty field for value is accepted """ -input MetadataAttributeInput { - opaqueId: OpaqueID! #Encoded ID of the instance for the linked object +input CreateMetadataAttributeInput { + targetId: OpaqueID! + key: String! + value: JSON +} + +""" +Input to edit a custom attribute, empty field for value is accepted +""" +input EditMetadataAttributeInput { + targetId: OpaqueID! key: String! value: JSON } @@ -30,67 +39,62 @@ input MetadataAttributeInput { Input to delete custom attribute """ input DeleteMetadataAttributeInput { - opaqueId: OpaqueID! #Encoded ID of the instance for the linked object + targetId: OpaqueID! key: String! } """ Errors that can occur when creating an attribute. """ -enum MetadataCreateAttributeError { +enum CreateMetadataAttributeError { PERMISSION_DENIED - MODEL_TYPE_NOT_FOUND - MODEL_NOT_FOUND + TARGET_NOT_FOUND DUPLICATE_KEY } """ Errors that can occur when deleting an attribute. """ -enum MetadataDeleteAttributeError { +enum DeleteMetadataAttributeError { PERMISSION_DENIED - MODEL_TYPE_NOT_FOUND - MODEL_NOT_FOUND - METADATA_OBJECT_NOT_FOUND + TARGET_NOT_FOUND METADATA_ATTRIBUTE_NOT_FOUND } """ Errors that can occur when editing an attribute. """ -enum MetadataEditAttributeError { +enum EditMetadataAttributeError { PERMISSION_DENIED - MODEL_TYPE_NOT_FOUND - MODEL_NOT_FOUND - METADATA_OBJECT_NOT_FOUND + TARGET_NOT_FOUND } -type CreateAttributeResult { +type CreateMetadataAttributeResult { success: Boolean! - errors: [MetadataCreateAttributeError!]! + errors: [CreateMetadataAttributeError!]! } -type DeleteAttributeResult { +type DeleteMetadataAttributeResult { success: Boolean! - errors: [MetadataDeleteAttributeError!]! + errors: [DeleteMetadataAttributeError!]! } -type EditAttributeResult { +type EditMetadataAttributeResult { success: Boolean! - errors: [MetadataEditAttributeError!]! + errors: [EditMetadataAttributeError!]! } extend type Query { - metadataAttributes(opaqueId: OpaqueID!): [MetadataAttribute]! + metadataAttributes(targetId: OpaqueID!): [MetadataAttribute]! } extend type Mutation { - "Add a custom attribute to an object instane" - addMetadata(input: MetadataAttributeInput!): CreateAttributeResult! @loginRequired - "Delete an attribute from an object instance" - deleteMetadata(input: DeleteMetadataAttributeInput!): DeleteAttributeResult! @loginRequired + "Add a custom metadata attribute to an object instance" + addMetadataAttribute(input: CreateMetadataAttributeInput!): CreateMetadataAttributeResult! @loginRequired + "Delete an metadata attribute from an object instance" + deleteMetadataAttribute(input: DeleteMetadataAttributeInput!): DeleteMetadataAttributeResult! @loginRequired "Edit metadata attribute for an object instance" - editMetadata(input: MetadataAttributeInput!): EditAttributeResult! @loginRequired + editMetadataAttribute(input: EditMetadataAttributeInput!): EditMetadataAttributeResult! @loginRequired } diff --git a/hexa/metadata/migrations/0002_alter_metadataattribute_value.py b/hexa/metadata/migrations/0002_alter_metadataattribute_value.py new file mode 100644 index 000000000..229b0e3a6 --- /dev/null +++ b/hexa/metadata/migrations/0002_alter_metadataattribute_value.py @@ -0,0 +1,17 @@ +# Generated by Django 5.0.8 on 2024-10-03 20:54 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("metadata", "0001_initial"), + ] + + operations = [ + migrations.AlterField( + model_name="metadataattribute", + name="value", + field=models.JSONField(default={}), + ), + ] diff --git a/hexa/metadata/migrations/0003_alter_metadataattribute_value.py b/hexa/metadata/migrations/0003_alter_metadataattribute_value.py new file mode 100644 index 000000000..92929884f --- /dev/null +++ b/hexa/metadata/migrations/0003_alter_metadataattribute_value.py @@ -0,0 +1,17 @@ +# Generated by Django 5.0.8 on 2024-10-03 20:54 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("metadata", "0002_alter_metadataattribute_value"), + ] + + operations = [ + migrations.AlterField( + model_name="metadataattribute", + name="value", + field=models.JSONField(default=dict), + ), + ] diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index e7b8df77e..0fb9386ed 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -1,6 +1,7 @@ +import typing import uuid -from django.contrib.contenttypes.fields import GenericForeignKey +from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation from django.contrib.contenttypes.models import ContentType from django.db import models @@ -16,7 +17,7 @@ class MetadataAttribute(Base): target = GenericForeignKey("object_content_type", "object_id") key = models.CharField(max_length=255) - value = models.CharField(max_length=255, null=True, blank=True) + value = models.JSONField(default=dict) system = models.BooleanField(default=False) class Meta: @@ -37,29 +38,42 @@ def __str__(self): return f"" -class MetadataMixin: +class MetadataMixin(models.Model): """ Mixin to add metadata functionality to models. This mixin allows the model to associate key-value metadata attributes. """ - def can_view_metadata(self, user: User): + attributes = GenericRelation( + MetadataAttribute, + content_type_field="object_content_type", + object_id_field="object_id", + ) + + class Meta: + abstract = True + + def can_view_metadata(self, user: User) -> bool: raise NotImplementedError - def can_update_metadata(self, user: User): + def can_update_metadata(self, user: User) -> bool: raise NotImplementedError - def can_delete_metadata(self, user: User): + def can_delete_metadata(self, user: User) -> bool: raise NotImplementedError - def add_attribute(self, key, value, system): + def add_attribute( + self, key: str, value: typing.Any, system: bool = False + ) -> MetadataAttribute: return self.attributes.create( key=key, value=value, system=system, ) - def update_attribute(self, key, system, value): + def update_or_create_attribute( + self, key: str, system: bool, value: typing.Any + ) -> MetadataAttribute: metadata_attr, _ = self.attributes.update_or_create( key=key, defaults={ @@ -69,8 +83,6 @@ def update_attribute(self, key, system, value): ) return metadata_attr - def delete_attribute(self, key): - return self.attributes.filter(key=key).delete() - - def get_attributes(self, **kwargs): - return self.attributes.filter(**kwargs).all() + def delete_attribute(self, key: str) -> None: + attr: MetadataAttribute = self.attributes.get(key=key) + attr.delete() diff --git a/hexa/metadata/schema/mutations.py b/hexa/metadata/schema/mutations.py index 345f3b7b7..2c6ceac56 100644 --- a/hexa/metadata/schema/mutations.py +++ b/hexa/metadata/schema/mutations.py @@ -1,18 +1,19 @@ from ariadne import MutationType -from django.contrib.contenttypes.models import ContentType -from django.core.exceptions import PermissionDenied +from django.core.exceptions import ObjectDoesNotExist, PermissionDenied from django.db import IntegrityError +from hexa.metadata.models import MetadataAttribute + mutations = MutationType() -@mutations.field("addMetadata") +@mutations.field("addMetadataAttribute") def resolve_add_metadata(_, info, **kwargs): mutation_input = kwargs["input"] user = info.context["request"].user try: - model_instance = mutation_input.get("opaqueId") + model_instance = mutation_input.get("targetId") if model_instance.can_update_metadata(user): model_instance.add_attribute( key=mutation_input["key"], @@ -21,56 +22,54 @@ def resolve_add_metadata(_, info, **kwargs): ) return {"success": True, "errors": []} - + except ObjectDoesNotExist: + return {"success": False, "errors": ["TARGET_NOT_FOUND"]} except PermissionDenied: return {"success": False, "errors": ["PERMISSION_DENIED"]} - except ContentType.DoesNotExist: - return {"success": False, "errors": ["MODEL_TYPE_NOT_FOUND"]} except IntegrityError: return {"success": False, "errors": ["DUPLICATE_KEY"]} -@mutations.field("deleteMetadata") +@mutations.field("deleteMetadataAttribute") def resolve_delete_metadata(_, info, **kwargs): mutation_input = kwargs["input"] user = info.context["request"].user try: - model_instance = mutation_input.get("opaqueId") - + model_instance = mutation_input.get("targetId") if model_instance.can_delete_metadata(user): - deleted, _ = model_instance.delete_attribute(key=mutation_input["key"]) - if deleted > 0: - return {"success": True, "errors": []} + model_instance.delete_attribute(key=mutation_input["key"]) + return {"success": True, "errors": []} else: return {"success": False, "errors": ["METADATA_ATTRIBUTE_NOT_FOUND"]} + except ObjectDoesNotExist: + return {"success": False, "errors": ["TARGET_NOT_FOUND"]} + except MetadataAttribute.NotFound: + return {"success": False, "errors": ["METADATA_ATTRIBUTE_NOT_FOUND"]} except PermissionDenied: return {"success": False, "errors": ["PERMISSION_DENIED"]} - except ContentType.DoesNotExist: - return {"success": False, "errors": ["MODEL_TYPE_NOT_FOUND"]} -@mutations.field("editMetadata") +@mutations.field("editMetadataAttribute") def resolve_edit_metadata(_, info, **kwargs): mutation_input = kwargs["input"] user = info.context["request"].user try: - model_instance = mutation_input.get("opaqueId") + model_instance = mutation_input.get("targetId") if model_instance.can_update_metadata(user): - model_instance.update_attribute( + model_instance.update_or_create_attribute( key=mutation_input["key"], value=mutation_input["value"], system=False, ) return {"success": True, "errors": []} - + except ObjectDoesNotExist: + return {"success": False, "errors": ["TARGET_NOT_FOUND"]} except PermissionDenied: return {"success": False, "errors": ["PERMISSION_DENIED"]} - except ContentType.DoesNotExist: - return {"success": False, "errors": ["MODEL_TYPE_NOT_FOUND"]} bindables = [mutations] diff --git a/hexa/metadata/schema/queries.py b/hexa/metadata/schema/queries.py index 5f50ec326..7b29da0c7 100644 --- a/hexa/metadata/schema/queries.py +++ b/hexa/metadata/schema/queries.py @@ -1,7 +1,4 @@ -import logging - from ariadne import QueryType -from django.contrib.contenttypes.models import ContentType metadata_queries = QueryType() @@ -10,13 +7,9 @@ def resolve_metadata_query(_, info, **kwargs): request = info.context["request"] user = request.user - try: - model_instance = kwargs.get("opaqueId") - if model_instance.can_view_metadata(user): - return model_instance.get_attributes() - except ContentType.DoesNotExist: - logging.exception("Content type does not exist") - return None + model_instance = kwargs.get("targetId") + if model_instance.can_view_metadata(user): + return model_instance.attributes.all() bindables = [metadata_queries] diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py index 123359eb3..3a928eff7 100644 --- a/hexa/metadata/schema/types.py +++ b/hexa/metadata/schema/types.py @@ -5,19 +5,18 @@ @metadata_object.field("attributes") -def resolve_metadata(parent, info): +def resolve_metadata(obj, info): user = info.context["request"].user try: - if parent.can_view_metadata(user): - metadata_attributes = parent.get_attributes() - return metadata_attributes if metadata_attributes.exists() else [] + if obj.can_view_metadata(user): + return obj.attributes.all() except PermissionDenied: return None @metadata_object.field("opaqueId") -def resolve_opaque_id(parent, _): - return parent +def resolve_opaque_id(obj, _): + return obj bindables = [metadata_object] From 534b23ea3220444a28ce37507846f5764315e83e Mon Sep 17 00:00:00 2001 From: nazarfil Date: Fri, 4 Oct 2024 09:39:20 +0200 Subject: [PATCH 20/28] fix tests dataset --- hexa/datasets/tests/test_generate_sample.py | 33 +++++++++++++++------ 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/hexa/datasets/tests/test_generate_sample.py b/hexa/datasets/tests/test_generate_sample.py index 79f1fc657..8972d7253 100644 --- a/hexa/datasets/tests/test_generate_sample.py +++ b/hexa/datasets/tests/test_generate_sample.py @@ -2,10 +2,11 @@ from unittest.mock import patch from django.test import override_settings +from pandas.errors import EmptyDataError from hexa.core.test import TestCase from hexa.datasets.models import Dataset, DatasetFileSample, DatasetVersionFile -from hexa.datasets.queue import generate_sample +from hexa.datasets.queue import generate_sample, load_df from hexa.files import storage from hexa.user_management.models import User from hexa.workspaces.models import Workspace @@ -37,13 +38,6 @@ def test_generate_sample( self, ): CASES = [ - # It fails because the file is empty (no columns to parse) - ( - "example_empty_file.csv", - DatasetFileSample.STATUS_FAILED, - [], - "No columns to parse from file", - ), ( "example_names.csv", DatasetFileSample.STATUS_FINISHED, @@ -113,7 +107,8 @@ def test_generate_sample( "hexa.datasets.queue.generate_download_url" ) as mock_generate_download_url: mock_generate_download_url.return_value = fixture_file_path - sample_entry = generate_sample(version_file) + df = load_df(version_file) + sample_entry = generate_sample(version_file, df) self.assertEqual(sample_entry.status, expected_status) self.assertEqual(sample_entry.sample, expected_sample) @@ -121,3 +116,23 @@ def test_generate_sample( self.assertEqual( sample_entry.status_reason, expected_status_reason ) + + def test_generate_sample_fails(self): + fixture_name = "example_empty_file.csv" + fixture_file_path = os.path.join( + os.path.dirname(__file__), f"fixtures/{fixture_name}" + ) + version_file = DatasetVersionFile.objects.create_if_has_perm( + self.USER_SERENA, + self.DATASET_VERSION, + uri=fixture_file_path, + content_type="application/octet-stream", + ) + + with patch( + "hexa.datasets.queue.generate_download_url" + ) as mock_generate_download_url: + mock_generate_download_url.return_value = fixture_file_path + + with self.assertRaises(EmptyDataError): + load_df(version_file) From fc8be426b0eba1f5991963d1c23a588953f1720e Mon Sep 17 00:00:00 2001 From: nazarfil Date: Fri, 4 Oct 2024 10:26:14 +0200 Subject: [PATCH 21/28] fix tests metadata --- hexa/datasets/tests/test_generate_sample.py | 4 +-- hexa/metadata/tests/test_schema.py | 27 ++++++++++----------- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/hexa/datasets/tests/test_generate_sample.py b/hexa/datasets/tests/test_generate_sample.py index 8972d7253..978a0a101 100644 --- a/hexa/datasets/tests/test_generate_sample.py +++ b/hexa/datasets/tests/test_generate_sample.py @@ -134,5 +134,5 @@ def test_generate_sample_fails(self): ) as mock_generate_download_url: mock_generate_download_url.return_value = fixture_file_path - with self.assertRaises(EmptyDataError): - load_df(version_file) + with self.assertRaises(EmptyDataError): + load_df(version_file) diff --git a/hexa/metadata/tests/test_schema.py b/hexa/metadata/tests/test_schema.py index 8842f2a73..93c23ebc7 100644 --- a/hexa/metadata/tests/test_schema.py +++ b/hexa/metadata/tests/test_schema.py @@ -56,7 +56,6 @@ def test_adding_metadata_to_file(self): + ":" + str(ContentType.objects.get_for_model(DatasetVersionFile).id) ) - self.assertEqual( r_before["data"], { @@ -71,14 +70,14 @@ def test_adding_metadata_to_file(self): self.queries["add_metadata_attribute"], { "input": { - "opaqueId": opaque_id, + "targetId": opaque_id, "key": "descriptions", "value": "test", } }, ) self.assertEqual( - r_add["data"], {"addMetadata": {"success": True, "errors": []}} + r_add["data"], {"addMetadataAttribute": {"success": True, "errors": []}} ) r_after = self.run_query( @@ -146,14 +145,14 @@ def test_delete_metadata_from_file(self): self.queries["delete_metadata_attribute"], { "input": { - "opaqueId": opaque_id, + "targetId": opaque_id, "key": metadataAttribute.key, } }, ) self.assertEqual( r_delete["data"], - {"deleteMetadata": {"success": True, "errors": []}}, + {"deleteMetadataAttribute": {"success": True, "errors": []}}, ) r_after = self.run_query( self.queries["get_metadata_for_file"], {"id": str(file.id)} @@ -224,14 +223,14 @@ def test_edit_metadata_on_file(self): self.queries["edit_metadata_attribute"], { "input": { - "opaqueId": opaque_id, + "targetId": opaque_id, "key": metadataAttribute.key, "value": "anotherValue", } }, ) self.assertEqual( - r_edit["data"], {"editMetadata": {"success": True, "errors": []}} + r_edit["data"], {"editMetadataAttribute": {"success": True, "errors": []}} ) r_after = self.run_query( self.queries["get_metadata_for_file"], {"id": str(file.id)} @@ -287,14 +286,14 @@ def test_adding_metadata_to_dataset(self): self.queries["add_metadata_attribute"], { "input": { - "opaqueId": opaque_id, + "targetId": opaque_id, "key": "descriptions", "value": "test", } }, ) self.assertEqual( - r_add["data"], {"addMetadata": {"success": True, "errors": []}} + r_add["data"], {"addMetadataAttribute": {"success": True, "errors": []}} ) r_after = self.run_query( @@ -335,8 +334,8 @@ def test_adding_metadata_to_dataset(self): } """, "add_metadata_attribute": """ - mutation AddMetadataToFile($input: MetadataAttributeInput!){ - addMetadata(input: $input) { + mutation AddMetadataToFile($input: CreateMetadataAttributeInput!){ + addMetadataAttribute(input: $input) { success errors } @@ -344,15 +343,15 @@ def test_adding_metadata_to_dataset(self): """, "delete_metadata_attribute": """ mutation DeleteMetadataFromFile($input: DeleteMetadataAttributeInput!){ - deleteMetadata(input: $input) { + deleteMetadataAttribute(input: $input) { success errors } } """, "edit_metadata_attribute": """ - mutation editMetadataOnFile($input: MetadataAttributeInput!){ - editMetadata(input: $input) { + mutation editMetadataOnFile($input: EditMetadataAttributeInput!){ + editMetadataAttribute(input: $input) { success errors } From 6b66b75d0623fcd4af5790fbbb4dd3f32a9f721e Mon Sep 17 00:00:00 2001 From: nazarfil Date: Tue, 8 Oct 2024 15:05:22 +0200 Subject: [PATCH 22/28] fix: fixes opaqueId to targetId --- hexa/datasets/graphql/schema.graphql | 6 +++--- hexa/metadata/graphql/schema.graphql | 2 +- hexa/metadata/schema/types.py | 2 +- hexa/metadata/tests/test_schema.py | 16 ++++++++-------- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/hexa/datasets/graphql/schema.graphql b/hexa/datasets/graphql/schema.graphql index 145cb420a..6e70a5b08 100644 --- a/hexa/datasets/graphql/schema.graphql +++ b/hexa/datasets/graphql/schema.graphql @@ -17,7 +17,7 @@ type Dataset implements MetadataObject{ latestVersion: DatasetVersion links(page: Int = 1, perPage: Int = 15): DatasetLinkPage! attributes: [MetadataAttribute!]! - opaqueId: OpaqueID! + targetId: OpaqueID! } """ @@ -47,7 +47,7 @@ type DatasetVersion implements MetadataObject{ fileByName(name: String!): DatasetVersionFile files(page: Int = 1, perPage: Int = 15): DatasetVersionFilePage! attributes: [MetadataAttribute!]! - opaqueId: OpaqueID! + targetId: OpaqueID! } """ @@ -125,7 +125,7 @@ type DatasetVersionFile implements MetadataObject{ contentType: String! fileSample: DatasetFileSample attributes: [MetadataAttribute!]! - opaqueId: OpaqueID! + targetId: OpaqueID! } """ diff --git a/hexa/metadata/graphql/schema.graphql b/hexa/metadata/graphql/schema.graphql index 95f512ff4..1aa96eb5a 100644 --- a/hexa/metadata/graphql/schema.graphql +++ b/hexa/metadata/graphql/schema.graphql @@ -2,7 +2,7 @@ Interface for type implementing metadata """ interface MetadataObject { - opaqueId: OpaqueID! + targetId: OpaqueID! attributes: [MetadataAttribute!]! } diff --git a/hexa/metadata/schema/types.py b/hexa/metadata/schema/types.py index 3a928eff7..1626b313b 100644 --- a/hexa/metadata/schema/types.py +++ b/hexa/metadata/schema/types.py @@ -14,7 +14,7 @@ def resolve_metadata(obj, info): return None -@metadata_object.field("opaqueId") +@metadata_object.field("targetId") def resolve_opaque_id(obj, _): return obj diff --git a/hexa/metadata/tests/test_schema.py b/hexa/metadata/tests/test_schema.py index 93c23ebc7..2d9ce77a2 100644 --- a/hexa/metadata/tests/test_schema.py +++ b/hexa/metadata/tests/test_schema.py @@ -61,7 +61,7 @@ def test_adding_metadata_to_file(self): { "datasetVersionFile": { "filename": "file.csv", - "opaqueId": opaque_id, + "targetId": opaque_id, "attributes": [], } }, @@ -88,7 +88,7 @@ def test_adding_metadata_to_file(self): { "datasetVersionFile": { "filename": "file.csv", - "opaqueId": opaque_id, + "targetId": opaque_id, "attributes": [ {"key": "descriptions", "value": "test", "system": False} ], @@ -136,7 +136,7 @@ def test_delete_metadata_from_file(self): { "datasetVersionFile": { "filename": "file.csv", - "opaqueId": opaque_id, + "targetId": opaque_id, "attributes": [{"key": "key1", "value": "value1", "system": True}], } }, @@ -162,7 +162,7 @@ def test_delete_metadata_from_file(self): { "datasetVersionFile": { "filename": "file.csv", - "opaqueId": opaque_id, + "targetId": opaque_id, "attributes": [], } }, @@ -208,7 +208,7 @@ def test_edit_metadata_on_file(self): { "datasetVersionFile": { "filename": "file.csv", - "opaqueId": opaque_id, + "targetId": opaque_id, "attributes": [ { "key": metadataAttribute.key, @@ -240,7 +240,7 @@ def test_edit_metadata_on_file(self): { "datasetVersionFile": { "filename": "file.csv", - "opaqueId": opaque_id, + "targetId": opaque_id, "attributes": [ { "key": metadataAttribute.key, @@ -276,7 +276,7 @@ def test_adding_metadata_to_dataset(self): r_before["data"], { "dataset": { - "opaqueId": opaque_id, + "targetId": opaque_id, "attributes": [], } }, @@ -303,7 +303,7 @@ def test_adding_metadata_to_dataset(self): r_after["data"], { "dataset": { - "opaqueId": opaque_id, + "targetId": opaque_id, "attributes": [ {"key": "descriptions", "value": "test", "system": False} ], From 8a55dbbf81d8983d1a86971239139527d08f362d Mon Sep 17 00:00:00 2001 From: nazarfil Date: Tue, 8 Oct 2024 17:20:30 +0200 Subject: [PATCH 23/28] fix: encodes key in base64 --- hexa/datasets/queue.py | 6 +++++- hexa/metadata/tests/test_schema.py | 5 +++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/hexa/datasets/queue.py b/hexa/datasets/queue.py index 5548eaf45..4f0d4da1b 100644 --- a/hexa/datasets/queue.py +++ b/hexa/datasets/queue.py @@ -1,3 +1,4 @@ +import base64 from logging import getLogger import pandas as pd @@ -158,8 +159,11 @@ def add_system_attributes(version_file: DatasetVersionFile, df: pd.DataFrame | N profiling = generate_profile(df) for column_profile in profiling: for key, value in column_profile.items(): + base64_encoded_key = base64.b64encode( + column_profile["column_name"].encode() + ).decode() version_file.update_or_create_attribute( - key=f'{column_profile["column_name"]}.{key}', + key=f"{base64_encoded_key}.{key}", value=value, system=True, ) diff --git a/hexa/metadata/tests/test_schema.py b/hexa/metadata/tests/test_schema.py index 2d9ce77a2..628881c03 100644 --- a/hexa/metadata/tests/test_schema.py +++ b/hexa/metadata/tests/test_schema.py @@ -51,6 +51,7 @@ def test_adding_metadata_to_file(self): r_before = self.run_query( self.queries["get_metadata_for_file"], {"id": str(file.id)} ) + opaque_id = encode_base_64( str(file.id) + ":" @@ -316,7 +317,7 @@ def test_adding_metadata_to_dataset(self): query GetObjectMetadata($id: ID!) { datasetVersionFile(id: $id) { filename - opaqueId + targetId attributes { key, value, system } @@ -326,7 +327,7 @@ def test_adding_metadata_to_dataset(self): "get_metadata_for_dataset": """ query GetObjectMetadata($id: ID!) { dataset(id: $id) { - opaqueId + targetId attributes { key, value, system } From 39a28ca44cdaf8a0eee165c9e0a2a4005de72c64 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Wed, 9 Oct 2024 09:07:02 +0200 Subject: [PATCH 24/28] test: tests add system attribute --- hexa/datasets/tests/test_generate_sample.py | 39 ++++++++++++++++++++- hexa/metadata/models.py | 2 +- 2 files changed, 39 insertions(+), 2 deletions(-) diff --git a/hexa/datasets/tests/test_generate_sample.py b/hexa/datasets/tests/test_generate_sample.py index 978a0a101..fb2834326 100644 --- a/hexa/datasets/tests/test_generate_sample.py +++ b/hexa/datasets/tests/test_generate_sample.py @@ -6,7 +6,7 @@ from hexa.core.test import TestCase from hexa.datasets.models import Dataset, DatasetFileSample, DatasetVersionFile -from hexa.datasets.queue import generate_sample, load_df +from hexa.datasets.queue import add_system_attributes, generate_sample, load_df from hexa.files import storage from hexa.user_management.models import User from hexa.workspaces.models import Workspace @@ -136,3 +136,40 @@ def test_generate_sample_fails(self): with self.assertRaises(EmptyDataError): load_df(version_file) + + @override_settings(WORKSPACE_DATASETS_FILE_SNAPSHOT_SIZE=3) + def test_add_system_attributes(self): + fixture_name = "example_names.csv" + fixture_file_path = os.path.join( + os.path.dirname(__file__), f"./fixtures/{fixture_name}" + ) + version_file = DatasetVersionFile.objects.create_if_has_perm( + self.USER_SERENA, + self.DATASET_VERSION, + uri=fixture_file_path, + content_type="application/octet-stream", + ) + + with patch( + "hexa.datasets.queue.generate_download_url" + ) as mock_generate_download_url: + mock_generate_download_url.return_value = fixture_file_path + df = load_df(version_file) + add_system_attributes(version_file, df) + + # Check if attributes are added correctly + attributes = version_file.attributes.all() + for attr in attributes: + print(attr) + self.assertTrue( + any( + attr.key == "c3VybmFtZQ==.data_type" and attr.value == "string" + for attr in attributes + ) + ) + self.assertTrue( + any( + attr.key == "c3VybmFtZQ==.missing_values" and attr.value == 0 + for attr in attributes + ) + ) diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index 0fb9386ed..729c3cbc4 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -35,7 +35,7 @@ class Meta: ] def __str__(self): - return f"" + return f"key={self.key}:value{self.value} object_id={self.object_id} content_type={self.object_content_type}" class MetadataMixin(models.Model): From 7348ffa96ada0f09d920cdf96cb42feb29c38c5a Mon Sep 17 00:00:00 2001 From: nazarfil Date: Wed, 9 Oct 2024 09:46:04 +0200 Subject: [PATCH 25/28] adds properties to the file --- hexa/datasets/graphql/schema.graphql | 1 + .../0010_datasetversionfile_properties.py | 17 +++++++++++++++++ hexa/datasets/models.py | 2 ++ hexa/datasets/queue.py | 12 ++++++++---- 4 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 hexa/datasets/migrations/0010_datasetversionfile_properties.py diff --git a/hexa/datasets/graphql/schema.graphql b/hexa/datasets/graphql/schema.graphql index 6e70a5b08..7f217637f 100644 --- a/hexa/datasets/graphql/schema.graphql +++ b/hexa/datasets/graphql/schema.graphql @@ -124,6 +124,7 @@ type DatasetVersionFile implements MetadataObject{ createdBy: User contentType: String! fileSample: DatasetFileSample + properties: JSON attributes: [MetadataAttribute!]! targetId: OpaqueID! } diff --git a/hexa/datasets/migrations/0010_datasetversionfile_properties.py b/hexa/datasets/migrations/0010_datasetversionfile_properties.py new file mode 100644 index 000000000..a0888ef77 --- /dev/null +++ b/hexa/datasets/migrations/0010_datasetversionfile_properties.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.16 on 2024-10-09 07:45 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("datasets", "0009_datasetfilesample_delete_datasetfilemetadata"), + ] + + operations = [ + migrations.AddField( + model_name="datasetversionfile", + name="properties", + field=models.JSONField(default=dict), + ), + ] diff --git a/hexa/datasets/models.py b/hexa/datasets/models.py index 965434bd4..53c841a03 100644 --- a/hexa/datasets/models.py +++ b/hexa/datasets/models.py @@ -288,6 +288,8 @@ class DatasetVersionFile(MetadataMixin, Base): uri = models.TextField(null=False, blank=False, unique=True) content_type = models.TextField(null=False, blank=False) created_by = models.ForeignKey(User, null=True, on_delete=models.SET_NULL) + properties = JSONField(default=dict) + dataset_version = models.ForeignKey( DatasetVersion, null=False, diff --git a/hexa/datasets/queue.py b/hexa/datasets/queue.py index 4f0d4da1b..e5dc0e561 100644 --- a/hexa/datasets/queue.py +++ b/hexa/datasets/queue.py @@ -1,4 +1,4 @@ -import base64 +import hashlib from logging import getLogger import pandas as pd @@ -157,16 +157,20 @@ def add_system_attributes(version_file: DatasetVersionFile, df: pd.DataFrame | N if df is None: return profiling = generate_profile(df) + column_name_map = {} for column_profile in profiling: for key, value in column_profile.items(): - base64_encoded_key = base64.b64encode( + hashed_column_name = hashlib.md5( column_profile["column_name"].encode() - ).decode() + ).hexdigest() + column_name_map[column_profile["column_name"]] = hashed_column_name version_file.update_or_create_attribute( - key=f"{base64_encoded_key}.{key}", + key=f"{hashed_column_name}.{key}", value=value, system=True, ) + version_file.properties["column_name_map"] = column_name_map + # Set properties map def generate_file_metadata_task(version_file: DatasetVersionFile) -> None: From 541ad11d445242e4d5aa20073ca414538cc52ce1 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Wed, 9 Oct 2024 09:54:44 +0200 Subject: [PATCH 26/28] modifies profiling test with proeprties --- hexa/datasets/tests/test_generate_sample.py | 73 ++++++++++++--------- 1 file changed, 41 insertions(+), 32 deletions(-) diff --git a/hexa/datasets/tests/test_generate_sample.py b/hexa/datasets/tests/test_generate_sample.py index fb2834326..2410bc6bf 100644 --- a/hexa/datasets/tests/test_generate_sample.py +++ b/hexa/datasets/tests/test_generate_sample.py @@ -1,6 +1,7 @@ import os from unittest.mock import patch +import pandas as pd from django.test import override_settings from pandas.errors import EmptyDataError @@ -139,37 +140,45 @@ def test_generate_sample_fails(self): @override_settings(WORKSPACE_DATASETS_FILE_SNAPSHOT_SIZE=3) def test_add_system_attributes(self): - fixture_name = "example_names.csv" - fixture_file_path = os.path.join( - os.path.dirname(__file__), f"./fixtures/{fixture_name}" - ) - version_file = DatasetVersionFile.objects.create_if_has_perm( - self.USER_SERENA, - self.DATASET_VERSION, - uri=fixture_file_path, - content_type="application/octet-stream", - ) - - with patch( - "hexa.datasets.queue.generate_download_url" - ) as mock_generate_download_url: - mock_generate_download_url.return_value = fixture_file_path - df = load_df(version_file) - add_system_attributes(version_file, df) - - # Check if attributes are added correctly - attributes = version_file.attributes.all() - for attr in attributes: - print(attr) - self.assertTrue( - any( - attr.key == "c3VybmFtZQ==.data_type" and attr.value == "string" - for attr in attributes + CASES = [ + ( + "example_names_with_age.csv", + "example_name_with_age_profiling.csv", + ), + ( + "senegal_rural_raw.csv", + "senegal_rural_profiling.csv", + ), + ] + for case, exptected_result in CASES: + with self.subTest(case=case): + fixture_name = case + fixture_file_path = os.path.join( + os.path.dirname(__file__), f"./fixtures/{fixture_name}" ) - ) - self.assertTrue( - any( - attr.key == "c3VybmFtZQ==.missing_values" and attr.value == 0 - for attr in attributes + version_file = DatasetVersionFile.objects.create_if_has_perm( + self.USER_SERENA, + self.DATASET_VERSION, + uri=fixture_file_path, + content_type="application/octet-stream", ) - ) + + with patch( + "hexa.datasets.queue.generate_download_url" + ) as mock_generate_download_url: + mock_generate_download_url.return_value = fixture_file_path + df = load_df(version_file) + add_system_attributes(version_file, df) + + # Check if attributes are added correctly + attributes = version_file.attributes.all() + attributes = version_file.attributes.all() + attributes_df = pd.DataFrame.from_records( + attributes.values("key", "value", "system") + ) + + expected_file_path = os.path.join( + os.path.dirname(__file__), f"./fixtures/{exptected_result}" + ) + expected_df = pd.read_csv(expected_file_path) + pd.testing.assert_frame_equal(attributes_df, expected_df) From 314dff4a26f080fad58b73a02958ec83ede44d22 Mon Sep 17 00:00:00 2001 From: nazarfil Date: Wed, 9 Oct 2024 10:57:59 +0200 Subject: [PATCH 27/28] fix: value comparison for profiling --- hexa/datasets/tests/test_generate_sample.py | 42 +++++++++++++++------ hexa/metadata/models.py | 2 +- 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/hexa/datasets/tests/test_generate_sample.py b/hexa/datasets/tests/test_generate_sample.py index 2410bc6bf..75c62c005 100644 --- a/hexa/datasets/tests/test_generate_sample.py +++ b/hexa/datasets/tests/test_generate_sample.py @@ -143,14 +143,28 @@ def test_add_system_attributes(self): CASES = [ ( "example_names_with_age.csv", - "example_name_with_age_profiling.csv", + [ + "data_type", + "missing_values", + "unique_values", + "distinct_values", + "constant_values", + ], + "example_names_with_age_profiling.csv", ), ( "senegal_rural_raw.csv", - "senegal_rural_profiling.csv", + [ + "data_type", + "missing_values", + "unique_values", + "distinct_values", + "constant_values", + ], + "senegal_rural_raw_profiling.csv", ), ] - for case, exptected_result in CASES: + for case, expected_values, expected_result in CASES: with self.subTest(case=case): fixture_name = case fixture_file_path = os.path.join( @@ -172,13 +186,19 @@ def test_add_system_attributes(self): # Check if attributes are added correctly attributes = version_file.attributes.all() - attributes = version_file.attributes.all() - attributes_df = pd.DataFrame.from_records( - attributes.values("key", "value", "system") + # Load expected results + expected_result_file_path = os.path.join( + os.path.dirname(__file__), f"./fixtures/{expected_result}" ) + expected_df = pd.read_csv(expected_result_file_path) - expected_file_path = os.path.join( - os.path.dirname(__file__), f"./fixtures/{exptected_result}" - ) - expected_df = pd.read_csv(expected_file_path) - pd.testing.assert_frame_equal(attributes_df, expected_df) + # Compare the values + for original_key, hashed_key in version_file.properties[ + "column_name_map" + ].items(): + for value in expected_values: + attribute = attributes.get(key=f"{hashed_key}.{value}") + expected_value = expected_df.loc[ + expected_df["column_name"] == original_key, value + ].values[0] + self.assertEqual(attribute.value, expected_value) diff --git a/hexa/metadata/models.py b/hexa/metadata/models.py index 729c3cbc4..cf60fe651 100644 --- a/hexa/metadata/models.py +++ b/hexa/metadata/models.py @@ -35,7 +35,7 @@ class Meta: ] def __str__(self): - return f"key={self.key}:value{self.value} object_id={self.object_id} content_type={self.object_content_type}" + return f"key={self.key} value={self.value} object_id={self.object_id} content_type={self.object_content_type}" class MetadataMixin(models.Model): From 17dcb53a57bdb7c5ec138ad2757a9b645a42be5c Mon Sep 17 00:00:00 2001 From: nazarfil Date: Wed, 9 Oct 2024 13:36:42 +0200 Subject: [PATCH 28/28] fix: added test to valdiate attributes have been copied --- hexa/datasets/tests/test_generate_sample.py | 90 ++++++++++++++++++++- hexa/metadata/tests/test_schema.py | 1 + 2 files changed, 87 insertions(+), 4 deletions(-) diff --git a/hexa/datasets/tests/test_generate_sample.py b/hexa/datasets/tests/test_generate_sample.py index 75c62c005..90760c030 100644 --- a/hexa/datasets/tests/test_generate_sample.py +++ b/hexa/datasets/tests/test_generate_sample.py @@ -2,18 +2,26 @@ from unittest.mock import patch import pandas as pd +from django.contrib.contenttypes.models import ContentType from django.test import override_settings from pandas.errors import EmptyDataError from hexa.core.test import TestCase from hexa.datasets.models import Dataset, DatasetFileSample, DatasetVersionFile -from hexa.datasets.queue import add_system_attributes, generate_sample, load_df +from hexa.datasets.queue import ( + add_system_attributes, + generate_sample, + get_previous_version_file, + load_df, +) +from hexa.datasets.tests.testutils import DatasetTestMixin from hexa.files import storage +from hexa.metadata.models import MetadataAttribute from hexa.user_management.models import User -from hexa.workspaces.models import Workspace +from hexa.workspaces.models import Workspace, WorkspaceMembershipRole -class TestCreateDatasetFileSampleTask(TestCase): +class TestCreateDatasetFileSampleTask(TestCase, DatasetTestMixin): @classmethod def setUpTestData(cls): storage.reset() @@ -138,7 +146,6 @@ def test_generate_sample_fails(self): with self.assertRaises(EmptyDataError): load_df(version_file) - @override_settings(WORKSPACE_DATASETS_FILE_SNAPSHOT_SIZE=3) def test_add_system_attributes(self): CASES = [ ( @@ -202,3 +209,78 @@ def test_add_system_attributes(self): expected_df["column_name"] == original_key, value ].values[0] self.assertEqual(attribute.value, expected_value) + + def test_copy_attributes_with_no_previous_version(self): + user = self.create_user(email="superuser@blsq.com", is_superuser=True) + user2 = self.create_user(email="notsu@blsq.com") + workspace = self.create_workspace( + principal=user, name="workspace", description="desc" + ) + self.join_workspace(user2, workspace, WorkspaceMembershipRole.EDITOR) + dataset = self.create_dataset( + principal=user, description="ds", name="Dataset", workspace=workspace + ) + self.create_dataset_version(principal=user, dataset=dataset) + self.client.force_login(user) + file = DatasetVersionFile.objects.create( + dataset_version=dataset.latest_version, + uri=dataset.latest_version.get_full_uri("file.csv"), + created_by=user, + ) + # No previous version + previous_version = get_previous_version_file(file) + self.assertIsNone(previous_version) + + # Copy attributes from previous version + add_system_attributes(file, None) + + self.assertEqual(file.attributes.count(), 0) + + def test_copy_attributes_from_previous_version(self): + user = self.create_user(email="superuser@blsq.com", is_superuser=True) + user2 = self.create_user(email="notsu@blsq.com") + workspace = self.create_workspace( + principal=user, name="workspace", description="desc" + ) + self.join_workspace(user2, workspace, WorkspaceMembershipRole.EDITOR) + dataset = self.create_dataset( + principal=user, description="ds", name="Dataset", workspace=workspace + ) + self.create_dataset_version(principal=user, dataset=dataset) + self.client.force_login(user) + file = DatasetVersionFile.objects.create( + dataset_version=dataset.latest_version, + uri=dataset.latest_version.get_full_uri("file.csv"), + created_by=user, + ) + + metadataAttribute = MetadataAttribute.objects.create( + key="key1", + value="value1", + system=False, + object_content_type_id=ContentType.objects.get_for_model( + DatasetVersionFile + ).id, + object_id=file.id, + ) + # No previous version + previous_version = get_previous_version_file(file) + self.assertIsNone(previous_version) + # Create previous version + self.create_dataset_version(principal=user, dataset=dataset, name="v2") + file2 = DatasetVersionFile.objects.create( + dataset_version=dataset.latest_version, + uri=dataset.latest_version.get_full_uri("file.csv"), + created_by=user, + ) + + # Create new version with the same file + previous_version_2 = get_previous_version_file(file2) + self.assertEqual(previous_version_2.id, file.id) + + # Copy attributes from previous version + add_system_attributes(file2, None) + + self.assertEqual(file2.attributes.all().count(), 1) + self.assertEqual(file2.attributes.first().key, metadataAttribute.key) + self.assertEqual(file2.attributes.first().value, metadataAttribute.value) diff --git a/hexa/metadata/tests/test_schema.py b/hexa/metadata/tests/test_schema.py index 628881c03..8e990c888 100644 --- a/hexa/metadata/tests/test_schema.py +++ b/hexa/metadata/tests/test_schema.py @@ -312,6 +312,7 @@ def test_adding_metadata_to_dataset(self): }, ) + # Queries to interact with metadata attributes on files and datasets queries = { "get_metadata_for_file": """ query GetObjectMetadata($id: ID!) {