Kossiesa commited on
Commit
edc4045
·
verified ·
1 Parent(s): 23923b2

Upload README.md with huggingface_hub

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