Dataset Viewer
Auto-converted to Parquet Duplicate
country_iso3
stringclasses
1 value
admin_1_pcode
stringlengths
4
4
admin_1_name
stringlengths
3
12
mpi
float64
0.15
0.48
headcount_ratio
float64
31
80.8
intensity_of_deprivation
float64
46.6
59.9
vulnerable_to_poverty
float64
10.4
24.4
in_severe_poverty
float64
14.1
57.9
survey
stringclasses
1 value
start_date
timestamp[ns, tz=UTC]date
2015-01-01 00:00:00
2015-01-01 00:00:00
end_date
timestamp[ns, tz=UTC]date
2016-12-31 00:00:00
2016-12-31 00:00:00
esa_source
stringclasses
1 value
esa_processed
stringdate
2026-04-06 00:00:00
2026-04-06 00:00:00
AGO
AO08
Cunene
0.4197
71.8787
58.3899
14.3246
50.7598
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO16
Namibe
0.275
50.0313
54.9656
15.7047
31.942
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO03
Bié
0.4751
80.8265
58.7851
10.3617
57.9218
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO13
Lunda Sul
0.355
67.8345
52.3309
16.2651
43.3335
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO15
Moxico
0.4248
75.9311
55.9465
12.3204
51.1083
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO17
Uíge
0.3915
73.1819
53.4916
12.3314
47.9321
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO02
Benguela
0.3223
59.584
54.0858
12.4519
35.1528
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO09
Huíla
0.4022
68.7173
58.5307
10.8676
48.1458
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO18
Zaire
0.2161
46.378
46.5859
24.3688
21.0483
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO04
Cabinda
0.154
31.039
49.6144
15.4986
14.0806
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO12
Lunda Norte
0.4315
76.1891
56.6369
12.0954
51.7481
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO07
Cuanza Sul
0.4598
76.8116
59.8564
12.2595
54.7361
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO10
Huambo
0.3759
66.4965
56.5314
12.9423
45.4494
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO14
Malanje
0.3394
61.328
55.3433
15.2026
39.8156
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06
AGO
AO06
Cuanza Norte
0.3301
62.5706
52.7634
17.8689
37.3217
DHS
2015-01-01T00:00:00
2016-12-31T00:00:00
HDX
2026-04-06

Angola 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: Angola 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-angola-mpi.

Dataset Profile

Field Value
Hugging Face repo electricsheepafrica/africa-angola-mpi
Sector health
Topic tags humanitarian, hdx, electric-sheep-africa, development, education, health, indicators, mortality, nutrition, poverty, socioeconomics, ago
Modalities tabular, text
Formats parquet
Size category n<1K
Countries Angola
ISO3 coverage AGO
Last modified on HF 2026-04-06 20:32:59+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-angola-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_angola_mpi_2026,
  title        = {Angola Multidimensional Poverty Index | Africa (original)},
  author       = {original},
  year         = {2026},
  url          = {https://huggingface.co/datasets/electricsheepafrica/africa-angola-mpi},
  publisher    = {Hugging Face Datasets, engineered by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-angola-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
19

Collections including electricsheepafrica/africa-angola-mpi