Logo Lanfrica

BOUFARRA-OUSSAMA/Zimbabwe-DHS-2015-Analysis

Domain:

healthcare

Record type:

project
Creator:
BOU
Host:
Ongoing project, soon will be in my portfolio # Zimbabwe DHS 2015: Community Sanitation & Child Diarrhea Analysis ## πŸ“‹ Project Overview This project analyzes the relationship between community-level sanitation coverage and child diarrhea prevalence using Zimbabwe DHS 2015 data. ### Research Question > Does the sanitation level of a child's neighborhood affect their risk of diarrhea, independent of their own household's sanitation? ## πŸ—‚οΈ Repository Structure ``` zimbabwe-dhs-analysis/ β”œβ”€β”€ data/ β”‚ β”œβ”€β”€ raw/ # Original DHS files (not tracked in git) β”‚ └── processed/ # Cleaned intermediate files β”œβ”€β”€ scripts/ β”‚ β”œβ”€β”€ 01_data_loading.py β”‚ β”œβ”€β”€ 02_household_processing.py β”‚ β”œβ”€β”€ 03_cluster_aggregation.py β”‚ β”œβ”€β”€ 04_child_preparation.py β”‚ β”œβ”€β”€ 05_data_merging.py β”‚ └── 06_analysis.py β”œβ”€β”€ outputs/ β”‚ β”œβ”€β”€ figures/ β”‚ β”œβ”€β”€ tables/ β”‚ └── policy_brief.md β”œβ”€β”€ docs/ β”œβ”€β”€ .github/ β”‚ └── copilot-instructions.md β”œβ”€β”€ prompts/ # AI prompts for each phase β”œβ”€β”€ requirements.txt └── README.md ``` ## πŸš€ Quick Start 1. **Clone repository** ```bash git clone github.com ``` 2. **Install dependencies** ```bash pip install -r requirements.txt ``` 3. **Run analysis pipeline** ```bash python scripts/01_data_loading.py python scripts/02_household_processing.py python scripts/03_cluster_aggregation.py python scripts/04_child_preparation.py python scripts/05_data_merging.py python scripts/06_analysis.py ``` ## πŸ“Š Key Outputs - `cluster_metrics.csv` β€” Cluster-level indicators - `spatial_maps.png` β€” Hotspot visualization - `regression_results.txt` β€” Statistical model output - `policy_brief.md` β€” Executive summary ## πŸ“š Data Sources - **Survey Data**: Zimbabwe DHS 2015 - **Geographic Data**: DHS GPS dataset (displaced for privacy) - **Geospatial Covariates**: DHS Spatial Data Repository ## πŸ”’ Data Access Raw DHS data requires registration at dhsprogram.com. Processed outputs are included in this repository. ## πŸ“ License This …