CoolFace
Datasetpublic

electricsheepafrica/africa-cameroon-data-for-the-covid-19-data-explorer-2e1e7caf

Data for the Covid-19 Data Explorer | Africa (Cameroon official open data) 2 rows - 1 Africa country - not-applicable - Repackaged by Electric Sheep Africa TL;DR This dataset packages one official CSV resource from Cameroon as ML-ready Parquet. The source file is the provenance boundary; all usable indicators or tabular columns from the resource stay together in this repo. About the source Source: Data for the Covid-19 Data Explorer Publisher:… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-cameroon-data-for-the-covid-19-data-explorer-2e1e7caf.

sourceHugging Facecc-by-4.0updated 29d agoView on Hugging Face
0likes45downloads
Dataset Card

Data for the Covid-19 Data Explorer | Africa (Cameroon official open data)

2 rows - 1 Africa country - not-applicable - Repackaged by Electric Sheep Africa

rows countries years indicators license

TL;DR

This dataset packages one official CSV resource from Cameroon as ML-ready Parquet. The source file is the provenance boundary; all usable indicators or tabular columns from the resource stay together in this repo.

About the source

Geographic coverage

1 Africa country:

CountryRowsFirst yearLast yearName
CMR2n/an/aCameroon

Indicators or Resource Contents

  • —This source file is packaged as a normalized tabular resource.

Schema

ColumnTypeDescriptionExample
source_record_idstringStable row identifier for tabular resources.be01de02-8fb0-4e03-875c-8f71a78aaaba:0
country_iso3categoryISO3 country code.CMR
country_namecategoryCountry name.Cameroon
cumulative_casesstringSource column.#affected+infected
cumulative_deathsstringSource column.#affected+killed
requiredfundingstringSource column.#value+funding+hrp+required+usd
fundingstringSource column.#value+funding+hrp+total+usd
percentfundedstringSource column.#value+funding+hrp+pct
cbpffundingstringSource column.#value+cbpf+funding+total+usd
cbpffundinggmemptystringSource column.#value+cbpf+funding+gmempty+total+usd
cbpffundinggm0stringSource column.#value+cbpf+funding+gm0+total+usd
cbpffundinggm1stringSource column.#value+cbpf+funding+gm1+total+usd
cbpffundinggm2stringSource column.#value+cbpf+funding+gm2+total+usd
cbpffundinggm3stringSource column.#value+cbpf+funding+gm3+total+usd
cbpffundinggm4stringSource column.#value+cbpf+funding+gm4+total+usd
cerffundingstringSource column.#value+cerf+funding+total+usd
cerffundinggmemptystringSource column.#value+cerf+funding+gmempty+total+usd
cerffundinggm0stringSource column.#value+cerf+funding+gm0+total+usd
cerffundinggm1stringSource column.#value+cerf+funding+gm1+total+usd
cerffundinggm2stringSource column.#value+cerf+funding+gm2+total+usd
cerffundinggm3stringSource column.#value+cerf+funding+gm3+total+usd
cerffundinggm4stringSource column.#value+cerf+funding+gm4+total+usd
cbpfcontributionsstringSource column.#value+cbpf+contributions+total+usd
cerfcontributionsstringSource column.#value+cerf+contributions+total+usd
totaldosesadministeredstringSource column.#capacity+doses+administered+total
peopleinneedstringSource column.#affected+inneed
numcountriesinneedstringSource column.#meta+countries+inneed+num
of_visas_pending_or_deniedstringSource column.#access+visas+pct
of_travel_authorizations_or_movements_deniedstringSource column.#access+travel+pct
number_of_incidents_reported_since_start_of_yearstringSource column.#event+year+todate+num
of_cerf_projects_affected_by_insecurity_and_inaccessibilstringSource column.#activity+cerf+project+insecurity+pct
of_cbpf_projects_affected_by_insecurity_and_inaccessibilstringSource column.#activity+cbpf+project+insecurity+pct
vaccinations_postponedstringSource column.#vaccination+postponed+num
covax_delivered_dosesstringSource column.#capacity+doses+delivered+covax
other_delivered_dosesstringSource column.#capacity+doses+delivered+others
total_delivered_dosesstringSource column.#capacity+doses+delivered+total
nochildrensamstringSource column.#affected+children+sam
dosesallocatedstringSource column.#capacity+doses+forecast+covax
worldbankfinancingapprovedstringSource column.#value+financing+worldbank+approved
gavicdsearlyaccessapprovedstringSource column.#value+financing+gavi+earlyaccess+approved
gavicdsneedsapprovedstringSource column.#value+financing+gavi+needs+approved
gavicdsearlyaccessdisbursedstringSource column.#value+financing+gavi+earlyaccess+disbursed
gavicdsneedsdisbursedstringSource column.#value+financing+gavi+needs+disbursed
worldbankgavifinancingtotalstringSource column.#value+financing+approved
foodinsecurityp3stringSource column.#affected+food+ipc+p3plus+num
no_closed_countriesstringSource column.#status+country+closed
no_affected_learnersstringSource column.#affected+learners
percentage_affected_learnersstringSource column.#affected+learners+pct
source_period_start_yearInt64First year inferred from source resource metadata.``
source_period_end_yearInt64Last year inferred from source resource metadata.``
source_period_labelstringHuman-readable period inferred from source resource metadata.``
source_providercategoryPublishing organization.HDX
source_datasetcategorySource package title.Data for the Covid-19 Data Explorer
source_resourcecategorySource resource title.Covid-19 Data Explorer - global data
source_package_idcategoryCKAN package UUID.548470a1-998b-4575-82d5-18217653bde5
source_resource_idcategoryCKAN resource UUID.be01de02-8fb0-4e03-875c-8f71a78aaaba
source_urlcategoryOriginal source resource URL.https://docs.google.com/spreadsheets/d/e/2PACX-1vT9_g7AItbqJwDkPi55VyVhq
license_idcategorySource license identifier.cc-by
retrieved_atcategoryUTC retrieval timestamp.2026-08-25T16:58:39Z

Usage

python
from datasets import load_dataset

ds = load_dataset("electricsheepafrica/africa-cameroon-data-for-the-covid-19-data-explorer-2e1e7caf")
df = ds["train"].to_pandas()
print(df.head())

Filter to one country

python
sample_country = df[df["country_iso3"] == "CMR"]

Work with indicators

python
if "indicator_id" in df.columns:
    print(df["indicator_id"].value_counts().head())
    sample = df.sort_values([c for c in ["indicator_id", "year"] if c in df.columns])

Citation

bibtex
@misc{electric_sheep_africa_africa_cameroon_data_for_the_covid_19_data_explorer_2e1e7caf_2026,
  title        = {Data for the Covid-19 Data Explorer | Africa (Cameroon official open data)},
  author       = {HDX},
  year         = {2026},
  url          = {https://data.humdata.org/dataset/covid-19-data-visual-inputs},
  publisher    = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-cameroon-data-for-the-covid-19-data-explorer-2e1e7caf}}
}

License

Released under CC BY 4.0.

Original data (c) HDX. When using this dataset, please cite both the original source above and the Electric Sheep Africa repackaging.

About Electric Sheep

Electric Sheep Africa is part of the Electric Sheep mission: a unified, ML-ready data layer for Africa on Hugging Face. We pull data from authoritative open sources, normalize the schemas, package as Parquet, and publish with consistent dataset cards so researchers and developers can use load_dataset() to start working in seconds.

Browse the full collection: huggingface.co/electricsheepafrica


Provenance: ingested 2026-08-25 via the Electric Sheep pipeline. Source URL: https://docs.google.com/spreadsheets/d/e/2PACX-1vT9_g7AItbqJwDkPi55VyVhqOdB81c3FePhqAoFlIL9160mxqtqg-OofaoTZtdq39BATa37PYQ4813k/pub?gid=1260889797&single=true&output=csv