Kossisoroyce commited on
Commit
eebe464
·
verified ·
1 Parent(s): 4733072

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +108 -26
README.md CHANGED
@@ -1,28 +1,110 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: country_name
5
- dtype: string
6
- - name: country_iso3
7
- dtype: string
8
- - name: year
9
- dtype: int64
10
- - name: Agricultural export subsidies (millions of current United States dollars)
11
- dtype: float64
12
- splits:
13
- - name: train
14
- num_bytes: 2486
15
- num_examples: 69
16
- - name: test
17
- num_bytes: 612
18
- num_examples: 18
19
- download_size: 5440
20
- dataset_size: 3098
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- - split: test
27
- path: data/test-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - tabular-classification
7
+ - tabular-regression
8
+ - time-series-forecasting
9
+ multilinguality: monolingual
10
+ size_categories:
11
+ - n<1K
12
+ tags:
13
+ - tabular
14
+ - africa
15
+ - our-world-in-data
16
+ - agricultural-export-subsidies
17
+ - owid
18
+ - long-run-series
19
+ - time-series
20
+ pretty_name: "Agricultural Export Subsidies | Africa (Our World in Data)"
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Agricultural Export Subsidies | Africa (Our World in Data)
24
+
25
+ 🌍 **87 observations** · **4 Africa countries** · **1995–2022** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
26
+
27
+ ![rows](https://img.shields.io/badge/rows-87-blue) ![countries](https://img.shields.io/badge/countries-4-green) ![years](https://img.shields.io/badge/years-1995–2022-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
28
+
29
+ ## TL;DR
30
+
31
+ This dataset contains **87 observations** of `Agricultural Export Subsidies` data across **4 Africa countries**, spanning **1995–2022**.
32
+
33
+ ## About the source
34
+
35
+ - **Source:** [Our World in Data](https://ourworldindata.org/grapher/agricultural-export-subsidies)
36
+ - **Publisher:** Our World in Data
37
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
38
+ - **Topic:** Agricultural Export Subsidies
39
+
40
+ ## Geographic coverage
41
+
42
+ 4 Africa countries · top rows shown below, sorted by row count:
43
+
44
+ | Country | Rows | First year | Last year |
45
+ |---------|-----:|-----------:|----------:|
46
+ | `MAR` | 28 | 1995 | 2022 |
47
+ | `TUN` | 25 | 1995 | 2019 |
48
+ | `ZAF` | 24 | 1995 | 2018 |
49
+ | `MUS` | 10 | 2007 | 2021 |
50
+
51
+ ## Schema
52
+
53
+ | Column | Type | Description | Example |
54
+ |--------|------|-------------|---------|
55
+ | `country_name` | `string` | — | `Mauritius` |
56
+ | `country_iso3` | `string` | — | `MUS` |
57
+ | `year` | `int64` | — | `2007` |
58
+ | `Agricultural export subsidies (millions of current United States dollars)` | `float64` | — | `100000.0` |
59
+
60
+ ## Usage
61
+
62
+ ```python
63
+ from datasets import load_dataset
64
+
65
+ ds = load_dataset("electricsheepafrica/africa-owid-agricultural-export-subsidies")
66
+ df = ds["train"].to_pandas()
67
+ print(df.head())
68
+ ```
69
+
70
+ ### Filter to one country
71
+
72
+ ```python
73
+ kenya = df[df["country_iso3"] == "KEN"]
74
+ ```
75
+
76
+ ### Time-series for a single indicator
77
+
78
+ ```python
79
+ sample = df.sort_values("year")
80
+ sample.plot(x="year", y="Agricultural export subsidies (millions of current United States dollars)")
81
+ ```
82
+
83
+ ## Citation
84
+
85
+ ```bibtex
86
+ @misc{africa_owid_agricultural_export_subsidies_2022,
87
+ title = {Agricultural Export Subsidies | Africa (Our World in Data)},
88
+ author = {Our World in Data},
89
+ year = {2022},
90
+ url = {https://ourworldindata.org/grapher/agricultural-export-subsidies},
91
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
92
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-owid-agricultural-export-subsidies}}
93
+ }
94
+ ```
95
+
96
+ ## License
97
+
98
+ Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
99
+
100
+ Original data © Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Africa repackaging.
101
+
102
+ ## About Electric Sheep
103
+
104
+ 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.
105
+
106
+ Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
107
+
108
+ ---
109
+
110
+ _Provenance: ingested 2026-06-01 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/agricultural-export-subsidies_