| # | survey_round | reference_period | indicator | breakdown | breakdown_value | sex | value | unit |
|---|---|---|---|---|---|---|---|---|
| loading... | ||||||||
| COLUMN | TYPE | DESCRIPTION | UNIT |
|---|---|---|---|
| survey_round | string | DHS round label. DHS7 only at present, so a later round appends rather than replaces. | - |
| reference_period | string | Survey reference period. "2025" for DHS7. | - |
| indicator | string | What is measured, one of 41 values. total_fertility_rate is the expected births per woman. The rest are contraception, prefixed by population because the source publishes the same column names for two: married_* for currently married women and unmarried_* for sexually active unmarried women. Each has contraception_any, contraception_modern, contraception_traditional, contraception_none, a count of women, and fifteen individual method_* shares. | - |
| breakdown | string | Which dimension this row varies. One of national, area, province, quintile, age_group, education, living_children. Each row varies exactly one. | - |
| breakdown_value | string | The value of that dimension. Rwanda for national; Urban or Rural for area; a province name matching the EICV and census datasets, normalised from the source's abbreviations; a wealth quintile from Lowest to Fifth; an age band, education level or number of living children otherwise. | - |
| sex | string | male, female, or total. These tables report women, so total throughout. | - |
| value | float64 | Indicator value, scale set by unit. | - |
| unit | string | Unit of the value column. percent for rates and shares, women for the counts, and births per woman for the total fertility rate. | - |
import imibare as imi
df = imi.load("rw.nisr.dhs-fertility.irregular")
print(df.head()) import duckdb
duckdb.sql("""
ATTACH 'https://catalog.cloudflarestorage.com/imibare-data'
AS imi (TYPE ICEBERG, READ_ONLY)
""")
duckdb.sql("SELECT * FROM imi.rw_nisr_dhs-fertility_irregular LIMIT 10").show() curl -L "https://api.imibare.org/v1/data/rw.nisr.dhs-fertility.irregular/download" \
-o "rw.nisr.dhs-fertility.irregular.parquet" # List all datasets
curl "https://api.imibare.org/v1/datasets"
# Get metadata for this dataset
curl "https://api.imibare.org/v1/datasets/rw.nisr.dhs-fertility.irregular" Every version is a change in the data, and every one is retained; snapshots are never overwritten. Each entry is a dated Parquet snapshot in the dataset's versions/ archive.
- 2026-08-14 Aug 14, 2026 LATEST626 rows · 7.6 KB · initial version
imibare contributors. (2026). DHS7 Fertility and Contraception [Data set]. imibare. v2026-08-14. https://imibare.org/datasets/rw.nisr.dhs-fertility.irregular
@dataset{imibare_rw_nisr_dhs-fertility_irregular, author = {imibare contributors}, title = {DHS7 Fertility and Contraception}, year = {2026}, publisher = {imibare}, version = {v2026-08-14}, url = {https://imibare.org/datasets/rw.nisr.dhs-fertility.irregular} }
imibare contributors. DHS7 Fertility and Contraception. v2026-08-14. imibare, 2026. https://imibare.org/datasets/rw.nisr.dhs-fertility.irregular.
imibare contributors. DHS7 Fertility and Contraception. v2026-08-14, imibare, 2026, https://imibare.org/datasets/rw.nisr.dhs-fertility.irregular.