Kossiesa commited on
Commit
3b4ccc2
·
verified ·
1 Parent(s): 186d90b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +125 -28
README.md CHANGED
@@ -1,30 +1,127 @@
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: National estimates
11
- dtype: float64
12
- - name: Modeled estimates by the ILO
13
- dtype: float64
14
- splits:
15
- - name: train
16
- num_bytes: 59332
17
- num_examples: 1376
18
- - name: test
19
- num_bytes: 15042
20
- num_examples: 345
21
- download_size: 27708
22
- dataset_size: 74374
23
- configs:
24
- - config_name: default
25
- data_files:
26
- - split: train
27
- path: data/train-*
28
- - split: test
29
- path: data/test-*
30
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - ilo-national-vs-modeled-data
17
+ - owid
18
+ - long-run-series
19
+ - time-series
20
+ pretty_name: "Ilo National Vs Modeled Data | Europe (Our World in Data)"
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Ilo National Vs Modeled Data | Europe (Our World in Data)
24
+
25
+ 🇪🇺 **1,721 observations** · **42 Europe countries** · **1969–2025** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)*
26
+
27
+ ![rows](https://img.shields.io/badge/rows-1,721-blue) ![countries](https://img.shields.io/badge/countries-42-green) ![years](https://img.shields.io/badge/years-1969–2025-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
28
+
29
+ ## TL;DR
30
+
31
+ This dataset contains **1,721 observations** of `Ilo National Vs Modeled Data` data across **42 Europe countries**, spanning **1969–2025**.
32
+
33
+ ## About the source
34
+
35
+ - **Source:** [Our World in Data](https://ourworldindata.org/grapher/ilo-national-vs-modeled-data)
36
+ - **Publisher:** Our World in Data
37
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
38
+ - **Topic:** Ilo National Vs Modeled Data
39
+
40
+ ## Geographic coverage
41
+
42
+ 42 Europe countries · top rows shown below, sorted by row count:
43
+
44
+ | Country | Rows | First year | Last year |
45
+ |---------|-----:|-----------:|----------:|
46
+ | `AUT` | 57 | 1969 | 2025 |
47
+ | `ESP` | 57 | 1969 | 2025 |
48
+ | `FIN` | 57 | 1969 | 2025 |
49
+ | `FRA` | 56 | 1970 | 2025 |
50
+ | `GBR` | 55 | 1971 | 2025 |
51
+ | `ITA` | 55 | 1970 | 2025 |
52
+ | `BEL` | 55 | 1971 | 2025 |
53
+ | `NOR` | 54 | 1972 | 2025 |
54
+ | `DNK` | 53 | 1973 | 2025 |
55
+ | `CHE` | 51 | 1975 | 2025 |
56
+ | `SWE` | 51 | 1969 | 2025 |
57
+ | `PRT` | 47 | 1974 | 2025 |
58
+ | `ALB` | 46 | 1980 | 2025 |
59
+ | `NLD` | 45 | 1975 | 2025 |
60
+ | `GRC` | 45 | 1981 | 2025 |
61
+ | ... | _27 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` | — | `1980` |
70
+ | `National estimates` | `float64` | — | `5.6` |
71
+ | `Modeled estimates by the ILO` | `float64` | — | `10.304` |
72
+
73
+ ## Data quality & caveats
74
+
75
+ - `National estimates` column has 6.1% null values (filtered to non-null in this dataset).
76
+
77
+ ## Usage
78
+
79
+ ```python
80
+ from datasets import load_dataset
81
+
82
+ ds = load_dataset("electricsheepeurope/europe-owid-ilo-national-vs-modeled-data")
83
+ df = ds["train"].to_pandas()
84
+ print(df.head())
85
+ ```
86
+
87
+ ### Filter to one country
88
+
89
+ ```python
90
+ germany = df[df["country_iso3"] == "DEU"]
91
+ ```
92
+
93
+ ### Time-series for a single indicator
94
+
95
+ ```python
96
+ sample = df.sort_values("year")
97
+ sample.plot(x="year", y="National estimates")
98
+ ```
99
+
100
+ ## Citation
101
+
102
+ ```bibtex
103
+ @misc{europe_owid_ilo_national_vs_modeled_data_2025,
104
+ title = {Ilo National Vs Modeled Data | Europe (Our World in Data)},
105
+ author = {Our World in Data},
106
+ year = {2025},
107
+ url = {https://ourworldindata.org/grapher/ilo-national-vs-modeled-data},
108
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe},
109
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-owid-ilo-national-vs-modeled-data}}
110
+ }
111
+ ```
112
+
113
+ ## License
114
+
115
+ Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
116
+
117
+ Original data © Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Europe repackaging.
118
+
119
+ ## About Electric Sheep
120
+
121
+ 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.
122
+
123
+ Browse the full collection: [huggingface.co/electricsheepeurope](https://huggingface.co/electricsheepeurope)
124
+
125
+ ---
126
+
127
+ _Provenance: ingested 2026-06-11 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/ilo-national-vs-modeled-data_