electricsheepafrica/africa-sierra-leone-slihs2018-o52-csv-c439d2a2
Slihs2018 O52 CSV | Africa (Statistics Sierra Leone) 41,010 rows - 1 Africa country/area - 2018 - source table - Engineered by Electric Sheep Africa TL;DR This dataset contains 41,010 rows from Statistics Sierra Leone, covering Slihs2018 O52 CSV. 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… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-sierra-leone-slihs2018-o52-csv-c439d2a2.
Slihs2018 O52 CSV | Africa (Statistics Sierra Leone)
41,010 rows - 1 Africa country/area - 2018 - source table - Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)
TL;DR
This dataset contains 41,010 rows from Statistics Sierra Leone, covering Slihs2018 O52 CSV. 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.
This dataset covers Slihs2018 O52 CSV from Statistics Sierra Leone. Use the source and schema sections below to confirm definitions, units, and collection methodology before sensitive analytical use.
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:
year. - Time coverage basis: year.
- Recommended join keys:
country_iso3where available plus source-specific keys.
Coverage
Geographic Coverage
Top areas shown below, sorted by row count when available:
Indicators, Variables, Or Resource Contents
- This repo preserves one source tabular resource with its usable columns kept together.
Schema
Usage
from datasets import load_dataset
ds = load_dataset("electricsheepafrica/africa-sierra-leone-slihs2018-o52-csv-c439d2a2")
df = ds["train"].to_pandas()
print(df.head())Inspect Columns
print(df.info())
print(df.head())Filter By Geography
if "country_iso3" in df.columns:
sample = df[df["country_iso3"] == "SL"]Time-Series Pattern
if "value" in df.columns and "year" in df.columns:
trend = df.sort_values("year")Pivot For Analysis
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
- Canonical time field:
year. - 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
- Source: Statistics Sierra Leone
- Publisher: Statistics Sierra Leone
- Portal: https://www.statistics.sl
- Resource: slihs2018_o52.csv
- License: Source-specific or other license
- Retrieved/generated:
2026-08-09T11:47:57Z - Hugging Face repo: electricsheepafrica/africa-sierra-leone-slihs2018-o52-csv-c439d2a2
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
- Build time-series views and period-over-period comparisons
- Check missingness before modeling
- Use
country_iso3as the safest geography join key when present
Citation
@misc{electric_sheep_africa_africa_sierra_leone_slihs2018_o52_csv_c439d2a2_2018,
title = {Slihs2018 O52 CSV | Africa (Statistics Sierra Leone)},
author = {Statistics Sierra Leone},
year = {2018},
url = {https://www.statistics.sl},
publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa},
howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-sierra-leone-slihs2018-o52-csv-c439d2a2}}
}License
Released under Source-specific or other license.
Original data is published by Statistics Sierra Leone. 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://www.statistics.sl
