File size: 4,031 Bytes
5adc23a 0457108 5adc23a 0457108 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | ---
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
- our-world-in-data
- agriculture-orientation-index
- owid
- long-run-series
- time-series
pretty_name: "Agriculture Orientation Index | Africa (Our World in Data)"
---
# Agriculture Orientation Index | Africa (Our World in Data)
🌍 **951 observations** · **52 Africa countries** · **2001–2023** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
   
## TL;DR
This dataset contains **951 observations** of `Agriculture Orientation Index` data across **52 Africa countries**, spanning **2001–2023**.
## About the source
- **Source:** [Our World in Data](https://ourworldindata.org/grapher/agriculture-orientation-index)
- **Publisher:** Our World in Data
- **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
- **Topic:** Agriculture Orientation Index
## Geographic coverage
52 Africa countries · top rows shown below, sorted by row count:
| Country | Rows | First year | Last year |
|---------|-----:|-----------:|----------:|
| `AGO` | 23 | 2001 | 2023 |
| `BEN` | 23 | 2001 | 2023 |
| `COD` | 23 | 2001 | 2023 |
| `BWA` | 23 | 2001 | 2023 |
| `GHA` | 23 | 2001 | 2023 |
| `ETH` | 23 | 2001 | 2023 |
| `CPV` | 23 | 2001 | 2023 |
| `DZA` | 23 | 2001 | 2023 |
| `EGY` | 23 | 2001 | 2023 |
| `MDG` | 23 | 2001 | 2023 |
| `MLI` | 23 | 2001 | 2023 |
| `KEN` | 23 | 2001 | 2023 |
| `SYC` | 23 | 2001 | 2023 |
| `TUN` | 23 | 2001 | 2023 |
| `ZAF` | 23 | 2001 | 2023 |
| ... | _37 more countries_ | | |
## Schema
| Column | Type | Description | Example |
|--------|------|-------------|---------|
| `country_name` | `string` | — | `Algeria` |
| `country_iso3` | `string` | — | `DZA` |
| `year` | `int64` | — | `2001` |
| `Agriculture orientation index for government spending` | `float64` | — | `0.43` |
## Usage
```python
from datasets import load_dataset
ds = load_dataset("electricsheepafrica/africa-owid-agriculture-orientation-index")
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.sort_values("year")
sample.plot(x="year", y="Agriculture orientation index for government spending")
```
## Citation
```bibtex
@misc{africa_owid_agriculture_orientation_index_2023,
title = {Agriculture Orientation Index | Africa (Our World in Data)},
author = {Our World in Data},
year = {2023},
url = {https://ourworldindata.org/grapher/agriculture-orientation-index},
publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-owid-agriculture-orientation-index}}
}
```
## License
Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
Original data © Our World in Data. 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-01 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/agriculture-orientation-index_
|