Dataset Viewer
Auto-converted to Parquet Duplicate
country_id
int64
172
172
month_id
int64
555
589
name
stringclasses
1 value
gwcode
int64
580
580
isoab
stringclasses
1 value
year
int64
2.03k
2.03k
month
int64
1
12
main_mean_ln
float64
0.02
0.1
main_mean
float64
0.02
0.1
main_dich
float64
0
0
esa_source
stringclasses
1 value
esa_processed
stringdate
2026-04-05 00:00:00
2026-04-05 00:00:00
172
563
Madagascar
580
MDG
2,026
11
0.073
0.0757
0
HDX
2026-04-05
172
572
Madagascar
580
MDG
2,027
8
0.0539
0.0553
0
HDX
2026-04-05
172
564
Madagascar
580
MDG
2,026
12
0.0687
0.0711
0
HDX
2026-04-05
172
589
Madagascar
580
MDG
2,029
1
0.083
0.0865
0
HDX
2026-04-05
172
555
Madagascar
580
MDG
2,026
3
0.0167
0.0169
0
HDX
2026-04-05
172
559
Madagascar
580
MDG
2,026
7
0.0363
0.0369
0
HDX
2026-04-05
172
584
Madagascar
580
MDG
2,028
8
0.0814
0.0848
0
HDX
2026-04-05
172
570
Madagascar
580
MDG
2,027
6
0.0513
0.0526
0
HDX
2026-04-05
172
574
Madagascar
580
MDG
2,027
10
0.0584
0.0602
0
HDX
2026-04-05
172
560
Madagascar
580
MDG
2,026
8
0.0413
0.0422
0
HDX
2026-04-05
172
566
Madagascar
580
MDG
2,027
2
0.0483
0.0494
0
HDX
2026-04-05
172
556
Madagascar
580
MDG
2,026
4
0.0296
0.0301
0
HDX
2026-04-05
172
579
Madagascar
580
MDG
2,028
3
0.0891
0.0932
0
HDX
2026-04-05
172
557
Madagascar
580
MDG
2,026
5
0.0312
0.0317
0
HDX
2026-04-05
172
588
Madagascar
580
MDG
2,028
12
0.081
0.0844
0
HDX
2026-04-05
172
558
Madagascar
580
MDG
2,026
6
0.0247
0.025
0
HDX
2026-04-05
172
587
Madagascar
580
MDG
2,028
11
0.0758
0.0788
0
HDX
2026-04-05
172
578
Madagascar
580
MDG
2,028
2
0.0701
0.0726
0
HDX
2026-04-05
172
582
Madagascar
580
MDG
2,028
6
0.0708
0.0734
0
HDX
2026-04-05
172
565
Madagascar
580
MDG
2,027
1
0.0634
0.0655
0
HDX
2026-04-05
172
577
Madagascar
580
MDG
2,028
1
0.0635
0.0656
0
HDX
2026-04-05
172
573
Madagascar
580
MDG
2,027
9
0.0625
0.0645
0
HDX
2026-04-05
172
580
Madagascar
580
MDG
2,028
4
0.0955
0.1002
0
HDX
2026-04-05
172
561
Madagascar
580
MDG
2,026
9
0.0453
0.0463
0
HDX
2026-04-05
172
575
Madagascar
580
MDG
2,027
11
0.0545
0.056
0
HDX
2026-04-05
172
562
Madagascar
580
MDG
2,026
10
0.0516
0.0529
0
HDX
2026-04-05
172
569
Madagascar
580
MDG
2,027
5
0.0521
0.0535
0
HDX
2026-04-05
172
583
Madagascar
580
MDG
2,028
7
0.0799
0.0832
0
HDX
2026-04-05

Madagascar - VIEWS conflict forecasts | Africa (original)

Size category: n<1K - Formats: parquet - Sector: governance_security - 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

Public datasets help analysts inspect structured evidence, build reproducible workflows, and compare patterns across domains.

Dataset context from the existing Hugging Face card: Madagascar - VIEWS conflict forecasts Publisher: Violence & Impacts Early-Warning System · Source: HDX · License: cc-by-sa · Updated: 2026-04-01 Abstract The Violence & Impacts Early-Warning System (VIEWS) is an award-winning conflict prediction system that generates monthly forecasts for violent conflicts across the world up to three years in advance. It is supported by the iterative research and development activities undertaken by the VIEWS consortium. Each row in… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-mdg-views-conflict-forecasts.

Dataset Profile

Field Value
Hugging Face repo electricsheepafrica/africa-mdg-views-conflict-forecasts
Sector governance_security
Topic tags humanitarian, hdx, electric-sheep-africa, conflict-violence, fatalities, forecasting, hxl, mdg
Modalities tabular, text
Formats parquet
Size category n<1K
Countries Madagascar
ISO3 coverage MDG
Last modified on HF 2026-04-05 21:50:28+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-mdg-views-conflict-forecasts")
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_mdg_views_conflict_forecasts_2026,
  title        = {Madagascar - VIEWS conflict forecasts | Africa (original)},
  author       = {original},
  year         = {2026},
  url          = {https://huggingface.co/datasets/electricsheepafrica/africa-mdg-views-conflict-forecasts},
  publisher    = {Hugging Face Datasets, engineered by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mdg-views-conflict-forecasts}}
}

License

Released under CC BY-SA 4.0.

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
35

Collection including electricsheepafrica/africa-mdg-views-conflict-forecasts