--- license: cc-by-4.0 language: - en task_categories: - tabular-classification - tabular-regression - time-series-forecasting multilinguality: monolingual size_categories: - n<1K tags: - tabular - africa - world-bank-โ€”-education-statistics - education-statistics - world-bank - worldbank - development-indicators - time-series pretty_name: "Current expenditure other than staff compensation as % of total expenditure in public institutions (%) | Africa (World Bank โ€” Education Statistics)" --- # Current expenditure other than staff compensation as % of total expenditure in public institutions (%) | Africa (World Bank โ€” Education Statistics) ๐ŸŒ **127 observations** ยท **26 Africa countries** ยท **1998โ€“2019** ยท *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)* ![rows](https://img.shields.io/badge/rows-127-blue) ![countries](https://img.shields.io/badge/countries-26-green) ![years](https://img.shields.io/badge/years-1998โ€“2019-orange) ![indicators](https://img.shields.io/badge/indicators-1-purple) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey) ## TL;DR This dataset contains **127 observations** of `Education Statistics` data across **26 Africa countries**, spanning **1998โ€“2019**, covering **1 distinct indicators**. ## About the source - **Source:** [World Bank โ€” Education Statistics](https://databank.worldbank.org/) - **Publisher:** World Bank - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/) - **Topic:** Education Statistics ## Geographic coverage 26 Africa countries ยท top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `BEN` | 15 | 1998 | 2015 | | `CIV` | 15 | 1998 | 2018 | | `GHA` | 11 | 2001 | 2014 | | `BDI` | 9 | 1999 | 2012 | | `ETH` | 7 | 2009 | 2015 | | `GIN` | 7 | 2013 | 2019 | | `MLI` | 7 | 2009 | 2017 | | `MDG` | 6 | 2005 | 2013 | | `KEN` | 5 | 2011 | 2015 | | `CPV` | 5 | 2004 | 2016 | | `GNB` | 5 | 1998 | 2013 | | `GMB` | 5 | 2008 | 2012 | | `CMR` | 4 | 2008 | 2013 | | `COM` | 4 | 1998 | 2015 | | `ERI` | 4 | 2000 | 2006 | | ... | _11 more countries_ | | | ## Indicators (sample) - `UIS.XSPENDP.FDPUB.FNNONS` โ€” Current expenditure other than staff compensation as % of total expenditure in public institutions (%) ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `indicator_id` | `string` | โ€” | `UIS.XSPENDP.FDPUB.FNNONS` | | `indicator_name` | `string` | โ€” | `Current expenditure other than staff โ€ฆ` | | `country_iso3` | `string` | โ€” | `BEN` | | `country_name` | `string` | โ€” | `Benin` | | `year` | `int64` | โ€” | `2015` | | `value` | `float64` | โ€” | `22.1633` | ## Usage ```python from datasets import load_dataset ds = load_dataset("electricsheepafrica/africa-worldbank-current-expenditure-other-than-staff-compensation-as-of-total-expenditure-in-pu") df = ds["train"].to_pandas() print(df.head()) ``` ### Filter to one country ```python kenya = df[df["country_iso3"] == "KEN"] ``` ### Time-series for a single indicator ```python sample = (df[df["indicator_id"] == "UIS.XSPENDP.FDPUB.FNNONS"] .sort_values("year")) sample.plot(x="year", y="value", title="UIS.XSPENDP.FDPUB.FNNONS") ``` ### Pivot to country ร— year matrix ```python matrix = (df[df["indicator_id"] == "UIS.XSPENDP.FDPUB.FNNONS"] .pivot_table(index="year", columns="country_iso3", values="value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{africa_worldbank_current_expenditure_other_than_staff_compensation_as_of_total_expenditure_in_pu_2019, title = {Current expenditure other than staff compensation as % of total expenditure in public institutions (%) | Africa (World Bank โ€” Education Statistics)}, author = {World Bank}, year = {2019}, url = {https://databank.worldbank.org/}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-worldbank-current-expenditure-other-than-staff-compensation-as-of-total-expenditure-in-pu}} } ``` ## License Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/). Original data ยฉ World Bank. 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 HuggingFace. 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](https://huggingface.co/electricsheepafrica) --- _Provenance: ingested 2026-06-19 via the Electric Sheep pipeline. Source URL: https://databank.worldbank.org/_