CoolFace
Datasetpublic

electricsheepafrica/africa-rwanda-eicv5-vup-parcels-29f300c8

EICV5 (VUP): Parcels | Africa (Rwanda Data Sharing Platform - NISR) 4,629 rows - 1 Africa country/area - 2016-10-13-2017-10-22 - source table - Engineered by Electric Sheep Africa TL;DR This dataset contains 4,629 rows from Rwanda Data Sharing Platform - NISR, covering EICV5 (VUP): Parcels. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly loading examples. What This Dataset… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-rwanda-eicv5-vup-parcels-29f300c8.

sourceHugging Facecc-by-4.0updated 2mo agoView on Hugging Face
0likes22downloads
Dataset Card

EICV5 (VUP): Parcels | Africa (Rwanda Data Sharing Platform - NISR)

4,629 rows - 1 Africa country/area - 2016-10-13-2017-10-22 - source table - Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)

rows countries period indicators license

TL;DR

This dataset contains 4,629 rows from Rwanda Data Sharing Platform - NISR, covering EICV5 (VUP): Parcels. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly loading examples.

What This Dataset Measures

Official statistics datasets help analysts inspect public data as published by governments, national statistical systems, and regional data portals.

Source-provided context: Summary: This microdata table contains information on parcels collected in the fifth Integrated Household Living Conditions Survey, known as EICV5 (Enquête Intégrale sur les Conditions de Vie des ménages). A main cross-sectional sample survey, a panel survey and a VUP (Vision Umurenge Programme) sample survey were conducted simultaneously; this microdata table relates to the VUP sample survey. Geographic Coverage: National coverage (Rwanda), including rural and urban households and allowing province- and district-level estimation of key indicators. Data are disaggregated up to the district level. Time Period: The EICV5 survey was conducted over a 12-month cycle from October 2016 to October 2017. Data collection was divided into 10 cycles in order to represent seasonality in the income and consumption data.

How To Read This Dataset

  • —One row means: one source record from the original tabular resource, with Electric Sheep Africa provenance columns added where available.
  • —Primary geography column: country_iso3.
  • —Best time column: not detected.
  • —Time coverage basis: source metadata period.
  • —Recommended join keys: country_iso3 where available plus source-specific keys.

Coverage

DimensionValue
Rows4,629
Countries/areas1
First period2016-10-13
Last period2017-10-22
Indicators0
Columns43
Source formatCSV

Geographic Coverage

Top areas shown below, sorted by row count when available:

AreaRowsFirst yearLast yearName
RWA4,6292016-10-132017-10-22Rwanda

Indicators, Variables, Or Resource Contents

  • —This repo preserves one source tabular resource with its usable columns kept together.

Schema

ColumnTypeDescriptionExample
source_record_idstringStable row identifier assigned during Electric Sheep Africa engineering.ac42e22b-bcf7-4425-bc87-c2c2df50227e:0
country_iso3stringISO3 country or area code.RWA
country_namestringCountry or area name.Rwanda
idint64Row ID1
key_17doubleEICV5 Household unique ID11000100.0
hhiddoubleHousehold ID in EICV4110001.0
clustdoubleCluster11231.0
provincestringProvinceKigali City
districtstringDistrict NameNyarugenge
urstringUrban/RuralRural
weightdoubleHousehold weight28.083334
s7cq0boolAnyonse in household owned or cultivated a plot of landFalse
s7cq1stringCode of operators``
s7cq2stringSex of owners``
s7cq3doubleField /bloc No``
s7cqnstringPlot reference- name``
s7cq4doubleSurface area``
s7cq5stringHow the land was acquired``
s7cq7doublecurrent value of this plot``
s7cq8stringRight to sell or use land as collateral``
s7cq9doubleCost of renting``
s7cq13stringMain kind of erosion protection``
s7cq15stringMajor problem``
s7cq18stringCode crop planted``
s7cq20stringCode crop removed``
s0q18mint64Month of interview4
s0q18yint64Year of interview2017
s7cq6stringland title for this plot from national land center``
s7cq10stringField has been cultivated in the over last 12 months``
s7cq11stringIrrigated at any time in the last 12 growing season``
s7cq12stringErosion protection``
s7cq14stringAny faced problems``
s7cq16stringLand consolidation activity``
s7cq17stringNew crops plantend in this parcel``
s7cq19stringCrop removed``
source_providerstringPublishing organization.NISR
source_datasetstringSource dataset or package title.EICV5 (VUP): Parcels
source_resourcestringSource resource title, table name, or file name.eicv5_vup_s7c_parcels
source_package_idstringSource package identifier.ac42e22b-bcf7-4425-bc87-c2c2df50227e
source_resource_idstringSource resource identifier.ac42e22b-bcf7-4425-bc87-c2c2df50227e
source_urlstringOriginal source URL or download URL.https://api.data.gov.rw/api/v1/datasets/public/ac42e22b-bcf7-4425-bc8...
license_idstringSource license identifier.cc-by-4.0
retrieved_atstringUTC source retrieval timestamp from the Electric Sheep Africa pipeline.2026-07-18T16:36:19Z

Usage

python
from datasets import load_dataset

ds = load_dataset("electricsheepafrica/africa-rwanda-eicv5-vup-parcels-29f300c8")
df = ds["train"].to_pandas()
print(df.head())

Inspect Columns

python
print(df.info())
print(df.head())

Filter By Geography

python
if "country_iso3" in df.columns:
    sample = df[df["country_iso3"] == "RWA"]

Time-Series Pattern

python
if "value" in df.columns and "year" in df.columns:
    trend = df.sort_values("year")

Pivot For Analysis

python
if {"indicator_id", "year", "value"}.issubset(df.columns):
    matrix = df.pivot_table(index="year", columns="indicator_id", values="value")
    print(matrix.tail())

Data Quality Notes

  • —No canonical year/date column was detected in the packaged table; use source metadata and domain context for temporal interpretation.
  • —Missing values are preserved rather than silently imputed.
  • —Column names are standardized for machine use; source meanings are preserved where known.
  • —Always confirm source methodology, units, and collection definitions before policy, production, or redistribution-sensitive use.

Source And Provenance

Transformations Applied

  • —Converted the source table to Parquet for efficient analytics and ML workflows.
  • —Added or preserved source provenance columns where available.
  • —Standardized README metadata, dataset loading configuration, schema documentation, and citation format.
  • —Preserved source-reported values without analytical imputation.

Suggested Analyses

  • —Profile the distribution of values
  • —Compare categories or geographies
  • —Join with complementary public datasets
  • —Check missingness before modeling
  • —Use country_iso3 as the safest geography join key when present

Citation

bibtex
@misc{electric_sheep_africa_africa_rwanda_eicv5_vup_parcels_29f300c8_2017,
  title        = {EICV5 (VUP): Parcels | Africa (Rwanda Data Sharing Platform - NISR)},
  author       = {NISR},
  year         = {2017},
  url          = {https://api.data.gov.rw/api/v1/datasets/public/ac42e22b-bcf7-4425-bc87-c2c2df50227e},
  publisher    = {Hugging Face Datasets, engineered by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-rwanda-eicv5-vup-parcels-29f300c8}}
}

License

Released under CC BY 4.0.

Original data is published by NISR. Electric Sheep Africa engineering standardizes the data for discovery, loading, and analysis on Hugging Face. Cite both the original source and this ML-ready dataset when used.

About Electric Sheep Africa

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


Provenance: README standardized 2026-08-12 by the Electric Sheep Africa README system. Source URL: https://api.data.gov.rw/api/v1/datasets/public/ac42e22b-bcf7-4425-bc87-c2c2df50227e