lucyi-morn's picture
Upload dataset folder
ae793d1 verified
|
Raw
History Blame Contribute Delete
8.69 kB
metadata
license: cc-by-4.0
language:
  - en
task_categories:
  - tabular-regression
  - time-series-forecasting
multilinguality: monolingual
size_categories:
  - n<1K
tags:
  - tabular
  - csv
  - africa
  - mali
  - official-statistics
  - open-data
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-00000-of-00001.parquet
pretty_name: Pool fund Extended allocation Details | Africa (Mali official open data)

Pool fund Extended allocation Details | Africa (Mali official open data)

730 rows - 1 Africa country - 2019-2021 - Repackaged by Electric Sheep Africa

rows countries years indicators license

TL;DR

This dataset packages one official CSV resource from Mali 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:

Country Rows First year Last year Name
MLI 730 2019 2021 Mali

Indicators or Resource Contents

  • pool-fund-extended-allocation-details-targetamt-b8dff050 - Pool fund Extended allocation Details - targetamt
  • pool-fund-extended-allocation-details-targethostcommunitiesm-cd0af09a - Pool fund Extended allocation Details - targethostcommunitiesm
  • pool-fund-extended-allocation-details-targethostcommunitiesw-16dc3d18 - Pool fund Extended allocation Details - targethostcommunitiesw
  • pool-fund-extended-allocation-details-targethostcommunitiesb-7b95831b - Pool fund Extended allocation Details - targethostcommunitiesb
  • pool-fund-extended-allocation-details-targethostcommunitiesg-bd8cbeb7 - Pool fund Extended allocation Details - targethostcommunitiesg
  • pool-fund-extended-allocation-details-targetrefugeesm-99ab1331 - Pool fund Extended allocation Details - targetrefugeesm
  • pool-fund-extended-allocation-details-targetrefugeesw-fd173c99 - Pool fund Extended allocation Details - targetrefugeesw
  • pool-fund-extended-allocation-details-targetrefugeesb-1f1a08bf - Pool fund Extended allocation Details - targetrefugeesb
  • pool-fund-extended-allocation-details-targetrefugeesg-ce93745b - Pool fund Extended allocation Details - targetrefugeesg
  • pool-fund-extended-allocation-details-targetreturneesm-e4b62fc5 - Pool fund Extended allocation Details - targetreturneesm
  • pool-fund-extended-allocation-details-targetreturneesw-922f0860 - Pool fund Extended allocation Details - targetreturneesw
  • pool-fund-extended-allocation-details-targetreturneesb-d8ac4eff - Pool fund Extended allocation Details - targetreturneesb
  • pool-fund-extended-allocation-details-targetreturneesg-4ff60038 - Pool fund Extended allocation Details - targetreturneesg
  • pool-fund-extended-allocation-details-targetidpsm-c766d844 - Pool fund Extended allocation Details - targetidpsm
  • pool-fund-extended-allocation-details-targetidpsw-328acaa4 - Pool fund Extended allocation Details - targetidpsw
  • pool-fund-extended-allocation-details-targetidpsb-556aa62e - Pool fund Extended allocation Details - targetidpsb
  • pool-fund-extended-allocation-details-targetidpsg-e8b5da51 - Pool fund Extended allocation Details - targetidpsg
  • pool-fund-extended-allocation-details-targetothersm-ebe8a1c6 - Pool fund Extended allocation Details - targetothersm
  • pool-fund-extended-allocation-details-targetothersw-913c26df - Pool fund Extended allocation Details - targetothersw
  • pool-fund-extended-allocation-details-targetothersb-1b8a7143 - Pool fund Extended allocation Details - targetothersb

Schema

Column Type Description Example
indicator_id string Stable indicator identifier. pool-fund-extended-allocation-details-targetamt-b8dff050
indicator_name string Human-readable indicator name. Pool fund Extended allocation Details - targetamt
country_iso3 string ISO3 country code. MLI
country_name string Country name. Mali
date string Observation date. 2020-12-06
year Int64 Observation year. 2020
value float64 Numeric observation value. 390000.0
unit string Measurement unit, when available. source_units_unspecified
dimension_pftype string Source dimension. CBPF
dimension_iso2country string Source dimension. SO
dimension_country string Source dimension. Somalia
dimension_typeofalloc string Source dimension. Reserve
dimension_alloctheme string Source dimension. Support to the Somalia NGO consortium
dimension_allocsummary string Source dimension. Reserve Allocation
dimension_alloclocation string Source dimension. Banadir, Woqooyi Galbeed
dimension_alloctitle string Source dimension. Reserve Allocation
source_period_start_year Int64 First year inferred from source resource metadata. ``
source_period_end_year Int64 Last year inferred from source resource metadata. ``
source_period_label string Human-readable period inferred from source resource metadata. ``
source_provider category Publishing organization. HDX
source_dataset category Source package title. Pool fund Extended allocation Details
source_resource category Source resource title. Poolfund Extended Allocation Details
source_package_id category CKAN package UUID. 4b2f3c7e-b0fc-4457-b3b6-3e006df27532
source_resource_id category CKAN resource UUID. 20f43a1e-28a6-4102-a4f4-eb20248ebe63
source_url category Original source resource URL. https://cbpfapi.unocha.org/vo2/odata/ExtendedAllocationDetails?PoolfundC
license_id category Source license identifier. cc-by
retrieved_at category UTC retrieval timestamp. 2026-08-13T10:40:31Z

Usage

from datasets import load_dataset

ds = load_dataset("electricsheepafrica/africa-mali-pool-fund-extended-allocation-details-05a1c009")
df = ds["train"].to_pandas()
print(df.head())

Filter to one country

sample_country = df[df["country_iso3"] == "MLI"]

Work with indicators

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

@misc{electric_sheep_africa_africa_mali_pool_fund_extended_allocation_details_05a1c009_2021,
  title        = {Pool fund Extended allocation Details | Africa (Mali official open data)},
  author       = {HDX},
  year         = {2021},
  url          = {https://data.humdata.org/dataset/pool-fund-extended-allocation-details},
  publisher    = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mali-pool-fund-extended-allocation-details-05a1c009}}
}

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-13 via the Electric Sheep pipeline. Source URL: https://cbpfapi.unocha.org/vo2/odata/ExtendedAllocationDetails?PoolfundCodeAbbrv=&$format=csv