Kossiesa commited on
Commit
0304380
·
verified ·
1 Parent(s): ba87b0d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +120 -26
README.md CHANGED
@@ -1,28 +1,122 @@
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: Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)
11
- dtype: float64
12
- splits:
13
- - name: train
14
- num_bytes: 36894
15
- num_examples: 1079
16
- - name: test
17
- num_bytes: 9393
18
- num_examples: 270
19
- download_size: 18912
20
- dataset_size: 46287
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
+ - 1K<n<10K
12
+ tags:
13
+ - tabular
14
+ - europe
15
+ - our-world-in-data
16
+ - agricultural-water-as-a-share-of-total-water-withdrawals
17
+ - owid
18
+ - long-run-series
19
+ - time-series
20
+ pretty_name: "Agricultural Water As A Share Of Total Water Withdrawals | Europe (Our World in Data)"
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Agricultural Water As A Share Of Total Water Withdrawals | Europe (Our World in Data)
24
+
25
+ 🇪🇺 **1,349 observations** · **39 Europe countries** · **1970–2022** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)*
26
+
27
+ ![rows](https://img.shields.io/badge/rows-1,349-blue) ![countries](https://img.shields.io/badge/countries-39-green) ![years](https://img.shields.io/badge/years-1970–2022-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
28
+
29
+ ## TL;DR
30
+
31
+ This dataset contains **1,349 observations** of `Agricultural Water As A Share Of Total Water Withdrawals` data across **39 Europe countries**, spanning **1970–2022**.
32
+
33
+ ## About the source
34
+
35
+ - **Source:** [Our World in Data](https://ourworldindata.org/grapher/agricultural-water-as-a-share-of-total-water-withdrawals)
36
+ - **Publisher:** Our World in Data
37
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
38
+ - **Topic:** Agricultural Water As A Share Of Total Water Withdrawals
39
+
40
+ ## Geographic coverage
41
+
42
+ 39 Europe countries · top rows shown below, sorted by row count:
43
+
44
+ | Country | Rows | First year | Last year |
45
+ |---------|-----:|-----------:|----------:|
46
+ | `POL` | 53 | 1970 | 2022 |
47
+ | `SWE` | 53 | 1970 | 2022 |
48
+ | `ROU` | 53 | 1970 | 2022 |
49
+ | `HUN` | 53 | 1970 | 2022 |
50
+ | `ITA` | 53 | 1970 | 2022 |
51
+ | `GRC` | 53 | 1970 | 2022 |
52
+ | `DNK` | 53 | 1970 | 2022 |
53
+ | `ISL` | 43 | 1980 | 2022 |
54
+ | `BEL` | 43 | 1980 | 2022 |
55
+ | `AUT` | 43 | 1980 | 2022 |
56
+ | `IRL` | 43 | 1980 | 2022 |
57
+ | `ESP` | 37 | 1986 | 2022 |
58
+ | `BGR` | 35 | 1988 | 2022 |
59
+ | `GBR` | 34 | 1989 | 2022 |
60
+ | `ALB` | 33 | 1990 | 2022 |
61
+ | ... | _24 more countries_ | | |
62
+
63
+ ## Schema
64
+
65
+ | Column | Type | Description | Example |
66
+ |--------|------|-------------|---------|
67
+ | `country_name` | `string` | — | `Albania` |
68
+ | `country_iso3` | `string` | — | `ALB` |
69
+ | `year` | `int64` | — | `1990` |
70
+ | `Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)` | `float64` | — | `83.333336` |
71
+
72
+ ## Usage
73
+
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
+ ds = load_dataset("electricsheepeurope/europe-owid-agricultural-water-as-a-share-of-total-water-withdrawals")
78
+ df = ds["train"].to_pandas()
79
+ print(df.head())
80
+ ```
81
+
82
+ ### Filter to one country
83
+
84
+ ```python
85
+ germany = df[df["country_iso3"] == "DEU"]
86
+ ```
87
+
88
+ ### Time-series for a single indicator
89
+
90
+ ```python
91
+ sample = df.sort_values("year")
92
+ sample.plot(x="year", y="Annual freshwater withdrawals, agriculture (% of total freshwater withdrawal)")
93
+ ```
94
+
95
+ ## Citation
96
+
97
+ ```bibtex
98
+ @misc{europe_owid_agricultural_water_as_a_share_of_total_water_withdrawals_2022,
99
+ title = {Agricultural Water As A Share Of Total Water Withdrawals | Europe (Our World in Data)},
100
+ author = {Our World in Data},
101
+ year = {2022},
102
+ url = {https://ourworldindata.org/grapher/agricultural-water-as-a-share-of-total-water-withdrawals},
103
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe},
104
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-owid-agricultural-water-as-a-share-of-total-water-withdrawals}}
105
+ }
106
+ ```
107
+
108
+ ## License
109
+
110
+ Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
111
+
112
+ Original data © Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Europe repackaging.
113
+
114
+ ## About Electric Sheep
115
+
116
+ 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.
117
+
118
+ Browse the full collection: [huggingface.co/electricsheepeurope](https://huggingface.co/electricsheepeurope)
119
+
120
+ ---
121
+
122
+ _Provenance: ingested 2026-06-02 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/agricultural-water-as-a-share-of-total-water-withdrawals_