Kossiesa's picture
Upload README.md with huggingface_hub
edc4045 verified
|
Raw
History Blame Contribute Delete
4.28 kB
---
license: cc-by-4.0
language:
- en
task_categories:
- tabular-classification
- tabular-regression
- time-series-forecasting
multilinguality: monolingual
size_categories:
- 1K<n<10K
tags:
- tabular
- europe
- our-world-in-data
- ict-adoption-per-100-people
- owid
- long-run-series
- time-series
pretty_name: "Ict Adoption Per 100 People | Europe (Our World in Data)"
---
# Ict Adoption Per 100 People | Europe (Our World in Data)
πŸ‡ͺπŸ‡Ί **2,545 observations** Β· **43 Europe countries** Β· **1960–2024** Β· *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)*
![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)
## TL;DR
This dataset contains **2,545 observations** of `Ict Adoption Per 100 People` data across **43 Europe countries**, spanning **1960–2024**.
## About the source
- **Source:** [Our World in Data](https://ourworldindata.org/grapher/ict-adoption-per-100-people)
- **Publisher:** Our World in Data
- **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
- **Topic:** Ict Adoption Per 100 People
## Geographic coverage
43 Europe countries Β· top rows shown below, sorted by row count:
| Country | Rows | First year | Last year |
|---------|-----:|-----------:|----------:|
| `AUT` | 65 | 1960 | 2024 |
| `BLR` | 65 | 1960 | 2024 |
| `BEL` | 65 | 1960 | 2024 |
| `DEU` | 65 | 1960 | 2024 |
| `DNK` | 65 | 1960 | 2024 |
| `ITA` | 65 | 1960 | 2024 |
| `LUX` | 65 | 1960 | 2024 |
| `GRC` | 65 | 1960 | 2024 |
| `HUN` | 65 | 1960 | 2024 |
| `FRA` | 65 | 1960 | 2024 |
| `ESP` | 65 | 1960 | 2024 |
| `SWE` | 65 | 1960 | 2024 |
| `SVK` | 65 | 1960 | 2024 |
| `PRT` | 65 | 1960 | 2024 |
| `POL` | 65 | 1960 | 2024 |
| ... | _28 more countries_ | | |
## Schema
| Column | Type | Description | Example |
|--------|------|-------------|---------|
| `country_name` | `string` | β€” | `Albania` |
| `country_iso3` | `string` | β€” | `ALB` |
| `year` | `int64` | β€” | `1960` |
| `Landline phone subscriptions` | `float64` | β€” | `0.40001425` |
| `Landline Internet subscriptions` | `float64` | β€” | `0.0088422` |
| `Mobile phone subscriptions` | `float64` | β€” | `0.0` |
| `Internet users` | `float64` | β€” | `0.0` |
## Data quality & caveats
- `Landline phone subscriptions` column has 4.2% null values (filtered to non-null in this dataset).
## Usage
```python
from datasets import load_dataset
ds = load_dataset("electricsheepeurope/europe-owid-ict-adoption-per-100-people")
df = ds["train"].to_pandas()
print(df.head())
```
### Filter to one country
```python
germany = df[df["country_iso3"] == "DEU"]
```
### Time-series for a single indicator
```python
sample = df.sort_values("year")
sample.plot(x="year", y="Landline phone subscriptions")
```
## Citation
```bibtex
@misc{europe_owid_ict_adoption_per_100_people_2024,
title = {Ict Adoption Per 100 People | Europe (Our World in Data)},
author = {Our World in Data},
year = {2024},
url = {https://ourworldindata.org/grapher/ict-adoption-per-100-people},
publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe},
howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-owid-ict-adoption-per-100-people}}
}
```
## License
Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
Original data Β© Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Europe repackaging.
## About Electric Sheep
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.
Browse the full collection: [huggingface.co/electricsheepeurope](https://huggingface.co/electricsheepeurope)
---
_Provenance: ingested 2026-06-11 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/ict-adoption-per-100-people_