CollosaAI commited on
Commit
fe4e729
·
verified ·
1 Parent(s): b64867f

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: GDP
11
- dtype: float64
12
- - name: "COâ\x82\x82 emissions"
13
- dtype: float64
14
- splits:
15
- - name: train
16
- num_bytes: 173924
17
- num_examples: 4068
18
- - name: test
19
- num_bytes: 45348
20
- num_examples: 1018
21
- download_size: 84868
22
- dataset_size: 219272
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
+ - asia
15
+ - our-world-in-data
16
+ - co2-gdp-growth
17
+ - owid
18
+ - long-run-series
19
+ - time-series
20
+ pretty_name: "Co2 Gdp Growth | Asia (Our World in Data)"
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Co2 Gdp Growth | Asia (Our World in Data)
24
+
25
+ 🌏 **5,086 observations** · **49 Asia countries** · **1831–2024** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)*
26
+
27
+ ![rows](https://img.shields.io/badge/rows-5,086-blue) ![countries](https://img.shields.io/badge/countries-49-green) ![years](https://img.shields.io/badge/years-1831–2024-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
28
+
29
+ ## TL;DR
30
+
31
+ This dataset contains **5,086 observations** of `Co2 Gdp Growth` data across **49 Asia countries**, spanning **1831–2024**.
32
+
33
+ ## About the source
34
+
35
+ - **Source:** [Our World in Data](https://ourworldindata.org/grapher/co2-gdp-growth)
36
+ - **Publisher:** Our World in Data
37
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
38
+ - **Topic:** Co2 Gdp Growth
39
+
40
+ ## Geographic coverage
41
+
42
+ 49 Asia countries · top rows shown below, sorted by row count:
43
+
44
+ | Country | Rows | First year | Last year |
45
+ |---------|-----:|-----------:|----------:|
46
+ | `ARM` | 169 | 1831 | 2024 |
47
+ | `GEO` | 169 | 1831 | 2024 |
48
+ | `AZE` | 169 | 1831 | 2024 |
49
+ | `KGZ` | 169 | 1831 | 2024 |
50
+ | `TJK` | 169 | 1831 | 2024 |
51
+ | `TKM` | 169 | 1831 | 2024 |
52
+ | `UZB` | 169 | 1831 | 2024 |
53
+ | `KAZ` | 169 | 1831 | 2024 |
54
+ | `TUR` | 159 | 1866 | 2024 |
55
+ | `JPN` | 156 | 1869 | 2024 |
56
+ | `IND` | 154 | 1859 | 2024 |
57
+ | `IDN` | 135 | 1890 | 2024 |
58
+ | `MYS` | 132 | 1891 | 2024 |
59
+ | `VNM` | 132 | 1893 | 2024 |
60
+ | `TWN` | 128 | 1897 | 2024 |
61
+ | ... | _34 more countries_ | | |
62
+
63
+ ## Schema
64
+
65
+ | Column | Type | Description | Example |
66
+ |--------|------|-------------|---------|
67
+ | `country_name` | `string` | — | `Afghanistan` |
68
+ | `country_iso3` | `string` | — | `AFG` |
69
+ | `year` | `int64` | — | `1950` |
70
+ | `GDP` | `float64` | — | `-9.431974` |
71
+ | `CO₂ emissions` | `float64` | — | `475.0` |
72
+
73
+ ## Data quality & caveats
74
+
75
+ - `GDP` column has 51.8% 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("electricsheepasia/asia-owid-co2-gdp-growth")
83
+ df = ds["train"].to_pandas()
84
+ print(df.head())
85
+ ```
86
+
87
+ ### Filter to one country
88
+
89
+ ```python
90
+ indonesia = df[df["country_iso3"] == "IDN"]
91
+ ```
92
+
93
+ ### Time-series for a single indicator
94
+
95
+ ```python
96
+ sample = df.sort_values("year")
97
+ sample.plot(x="year", y="GDP")
98
+ ```
99
+
100
+ ## Citation
101
+
102
+ ```bibtex
103
+ @misc{asia_owid_co2_gdp_growth_2024,
104
+ title = {Co2 Gdp Growth | Asia (Our World in Data)},
105
+ author = {Our World in Data},
106
+ year = {2024},
107
+ url = {https://ourworldindata.org/grapher/co2-gdp-growth},
108
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia},
109
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-owid-co2-gdp-growth}}
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 Asia repackaging.
118
+
119
+ ## About Electric Sheep
120
+
121
+ Electric Sheep Asia is part of the Electric Sheep mission: a unified, ML-ready data layer for Asia 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/electricsheepasia](https://huggingface.co/electricsheepasia)
124
+
125
+ ---
126
+
127
+ _Provenance: ingested 2026-06-05 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/co2-gdp-growth_