Kossiesa commited on
Commit
f2ad0f5
·
verified ·
1 Parent(s): 3b9355b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +117 -26
README.md CHANGED
@@ -1,28 +1,119 @@
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: Almonds - Yield (tonnes per hectare)
11
- dtype: float64
12
- splits:
13
- - name: train
14
- num_bytes: 15180
15
- num_examples: 427
16
- - name: test
17
- num_bytes: 3530
18
- num_examples: 107
19
- download_size: 9905
20
- dataset_size: 18710
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
+ - europe
15
+ - our-world-in-data
16
+ - almond-yields
17
+ - owid
18
+ - long-run-series
19
+ - time-series
20
+ pretty_name: "Almond Yields | Europe (Our World in Data)"
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Almond Yields | Europe (Our World in Data)
24
+
25
+ 🇪🇺 **534 observations** · **13 Europe countries** · **1961–2024** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)*
26
+
27
+ ![rows](https://img.shields.io/badge/rows-534-blue) ![countries](https://img.shields.io/badge/countries-13-green) ![years](https://img.shields.io/badge/years-1961–2024-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
28
+
29
+ ## TL;DR
30
+
31
+ This dataset contains **534 observations** of `Almond Yields` data across **13 Europe countries**, spanning **1961–2024**.
32
+
33
+ ## About the source
34
+
35
+ - **Source:** [Our World in Data](https://ourworldindata.org/grapher/almond-yields)
36
+ - **Publisher:** Our World in Data
37
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
38
+ - **Topic:** Almond Yields
39
+
40
+ ## Geographic coverage
41
+
42
+ 13 Europe countries · top rows shown below, sorted by row count:
43
+
44
+ | Country | Rows | First year | Last year |
45
+ |---------|-----:|-----------:|----------:|
46
+ | `ESP` | 64 | 1961 | 2024 |
47
+ | `PRT` | 64 | 1961 | 2024 |
48
+ | `ITA` | 64 | 1961 | 2024 |
49
+ | `BGR` | 40 | 1985 | 2024 |
50
+ | `FRA` | 40 | 1985 | 2024 |
51
+ | `HUN` | 40 | 1985 | 2024 |
52
+ | `GRC` | 40 | 1985 | 2024 |
53
+ | `BIH` | 33 | 1992 | 2024 |
54
+ | `HRV` | 33 | 1992 | 2024 |
55
+ | `MDA` | 33 | 1992 | 2024 |
56
+ | `MKD` | 33 | 1992 | 2024 |
57
+ | `SVN` | 27 | 1992 | 2024 |
58
+ | `UKR` | 23 | 1992 | 2014 |
59
+
60
+ ## Schema
61
+
62
+ | Column | Type | Description | Example |
63
+ |--------|------|-------------|---------|
64
+ | `country_name` | `string` | — | `Bosnia and Herzegovina` |
65
+ | `country_iso3` | `string` | — | `BIH` |
66
+ | `year` | `int64` | — | `1992` |
67
+ | `Almonds - Yield (tonnes per hectare)` | `float64` | — | `1.1984001` |
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from datasets import load_dataset
73
+
74
+ ds = load_dataset("electricsheepeurope/europe-owid-almond-yields")
75
+ df = ds["train"].to_pandas()
76
+ print(df.head())
77
+ ```
78
+
79
+ ### Filter to one country
80
+
81
+ ```python
82
+ germany = df[df["country_iso3"] == "DEU"]
83
+ ```
84
+
85
+ ### Time-series for a single indicator
86
+
87
+ ```python
88
+ sample = df.sort_values("year")
89
+ sample.plot(x="year", y="Almonds - Yield (tonnes per hectare)")
90
+ ```
91
+
92
+ ## Citation
93
+
94
+ ```bibtex
95
+ @misc{europe_owid_almond_yields_2024,
96
+ title = {Almond Yields | Europe (Our World in Data)},
97
+ author = {Our World in Data},
98
+ year = {2024},
99
+ url = {https://ourworldindata.org/grapher/almond-yields},
100
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe},
101
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-owid-almond-yields}}
102
+ }
103
+ ```
104
+
105
+ ## License
106
+
107
+ Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
108
+
109
+ Original data © Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Europe repackaging.
110
+
111
+ ## About Electric Sheep
112
+
113
+ Electric Sheep Europe is part of the Electric Sheep mission: a unified, ML-ready data layer for Europe 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.
114
+
115
+ Browse the full collection: [huggingface.co/electricsheepeurope](https://huggingface.co/electricsheepeurope)
116
+
117
+ ---
118
+
119
+ _Provenance: ingested 2026-06-02 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/almond-yields_