Dataset Viewer
Auto-converted to Parquet Duplicate
country_iso3
stringclasses
1 value
admin_1_name
stringlengths
4
13
mpi
float64
0.03
0.63
headcount_ratio
float64
7.29
96.3
intensity_of_deprivation
float64
42.2
65.3
vulnerable_to_poverty
float64
3.53
28
in_severe_poverty
float64
0.98
85.1
survey
stringclasses
1 value
start_date
timestamp[ns, tz=UTC]date
2016-01-01 00:00:00
2016-01-01 00:00:00
end_date
timestamp[ns, tz=UTC]date
2016-12-31 23:59:59
2016-12-31 23:59:59
esa_source
stringclasses
1 value
esa_processed
stringdate
2026-04-05 00:00:00
2026-04-05 00:00:00
UGA
Teso
0.3195
65.0688
49.1079
21.8549
29.2047
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
North Buganda
0.211
45.6642
46.2176
25.5311
17.2334
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
Karamoja
0.6289
96.2579
65.3329
3.5299
85.0563
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
Kigezi
0.2669
57.359
46.5285
27.9737
19.4578
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
Ankole
0.281
58.1987
48.281
27.4224
23.0024
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
West Nile
0.4117
78.1559
52.6726
15.83
43.7571
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
Bukedi
0.3029
64.1864
47.1948
24.4856
27.8597
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
Kampala
0.0307
7.2853
42.1965
24.5488
0.9757
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
Lango
0.3513
70.7695
49.6409
22.3001
33.2051
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
South Buganda
0.153
32.9468
46.434
25.3117
10.5962
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
Bugisu
0.2971
62.8629
47.266
27.2192
25.3483
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05
UGA
Busoga
0.2539
54.2187
46.823
27.334
21.5134
DHS
2016-01-01T00:00:00
2016-12-31T23:59:59
HDX
2026-04-05

Uganda Multidimensional Poverty Index | Africa (original)

Size category: n<1K - Formats: parquet - Sector: health - Engineered by Electric Sheep Africa

size sector downloads license

TL;DR

This dataset is part of the Electric Sheep Africa catalog on Hugging Face. It is indexed for African data discovery with standardized metadata, loading guidance, provenance notes, and analyst-oriented context.

What This Dataset Covers

Health datasets help researchers examine disease burden, service delivery, risk factors, outcomes, and public-health program performance.

Dataset context from the existing Hugging Face card: Uganda Multidimensional Poverty Index Publisher: Oxford Poverty & Human Development Initiative · Source: HDX · License: other-pd-nr · Updated: 2026-03-05 Abstract The global Multidimensional Poverty Index provides the only comprehensive measure available for non-income poverty, which has become a critical underpinning of the SDGs. The global Multidimensional Poverty Index (MPI) measures multidimensional poverty in over 100 developing countries, using internationally… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-uganda-mpi.

Dataset Profile

Field Value
Hugging Face repo electricsheepafrica/africa-uganda-mpi
Sector health
Topic tags humanitarian, hdx, electric-sheep-africa, development, education, health, indicators, mortality, nutrition, poverty, socioeconomics, uga
Modalities tabular, text
Formats parquet
Size category n<1K
Countries Uganda
ISO3 coverage UGA
Last modified on HF 2026-04-05 17:01:44+00:00
Inventory snapshot 2026-07-16T16:00:34Z

How To Read This Dataset

  • Start from the repository files and the dataset viewer when available.
  • Treat the README context as a fast orientation layer; confirm variable definitions and units in the data files before modeling.
  • Use explicit country columns when present. When geography is only implied by the title or source metadata, document that assumption in downstream analysis.
  • Preserve missing values until you have a defensible imputation rule.

Usage

from datasets import load_dataset

ds = load_dataset("electricsheepafrica/africa-uganda-mpi")
print(ds)

split_name = next(iter(ds))
table = ds[split_name]
print(table.features)
print(table[:3])

Convert To Pandas When Tabular

from datasets import Dataset

first_split = ds[next(iter(ds))]
if isinstance(first_split, Dataset):
    df = first_split.to_pandas()
    print(df.head())

Data Quality Notes

  • This card was standardized from the Electric Sheep Africa Hugging Face metadata inventory.
  • Exact schema, row counts, and source files should be inspected in the repository data files.
  • Metadata gaps from the inventory: upstream_publisher.
  • Do not infer policy meaning from labels alone; confirm definitions, units, and methods in the source material.

Source And Provenance

Suggested Analyses

  • Inspect schema and missingness before modeling.
  • Profile variables by geography, time, and subgroup columns where present.
  • Join with other Electric Sheep Africa datasets using explicit country, year, and indicator fields when available.
  • Build reproducible notebooks that cite both the original source context and the Electric Sheep Africa Hugging Face repo.

Citation

@misc{electric_sheep_africa_africa_uganda_mpi_2026,
  title        = {Uganda Multidimensional Poverty Index | Africa (original)},
  author       = {original},
  year         = {2026},
  url          = {https://huggingface.co/datasets/electricsheepafrica/africa-uganda-mpi},
  publisher    = {Hugging Face Datasets, engineered by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-uganda-mpi}}
}

License

Released under Source-specific or other license.

Original source rights remain with the original publisher or data provider. Electric Sheep Africa engineering standardizes discovery metadata, documentation, and usage guidance for analysis on Hugging Face.

About Electric Sheep Africa

Electric Sheep Africa publishes ML-ready African public datasets on Hugging Face.


Provenance: metadata-backed README standardized 2026-08-12 by the Electric Sheep Africa README system. Inventory source: catalog/esa_metadata_inventory/master_metadata.jsonl.

Downloads last month
34

Collections including electricsheepafrica/africa-uganda-mpi