CollosaAI commited on
Commit
26a5f94
·
verified ·
1 Parent(s): bad5cf2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +121 -28
README.md CHANGED
@@ -1,30 +1,123 @@
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: Liberal Political Institutions Index
11
- dtype: float64
12
- - name: World region according to OWID
13
- dtype: string
14
- splits:
15
- - name: train
16
- num_bytes: 263941
17
- num_examples: 6180
18
- - name: test
19
- num_bytes: 66457
20
- num_examples: 1545
21
- download_size: 42029
22
- dataset_size: 330398
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
+ - liberal-political-institutions-index
17
+ - owid
18
+ - long-run-series
19
+ - time-series
20
+ pretty_name: "Liberal Political Institutions Index | Asia (Our World in Data)"
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Liberal Political Institutions Index | Asia (Our World in Data)
24
+
25
+ 🌏 **7,725 observations** · **48 Asia countries** · **1789–2025** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)*
26
+
27
+ ![rows](https://img.shields.io/badge/rows-7,725-blue) ![countries](https://img.shields.io/badge/countries-48-green) ![years](https://img.shields.io/badge/years-1789–2025-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
28
+
29
+ ## TL;DR
30
+
31
+ This dataset contains **7,725 observations** of `Liberal Political Institutions Index` data across **48 Asia countries**, spanning **1789–2025**.
32
+
33
+ ## About the source
34
+
35
+ - **Source:** [Our World in Data](https://ourworldindata.org/grapher/liberal-political-institutions-index)
36
+ - **Publisher:** Our World in Data
37
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
38
+ - **Topic:** Liberal Political Institutions Index
39
+
40
+ ## Geographic coverage
41
+
42
+ 48 Asia countries · top rows shown below, sorted by row count:
43
+
44
+ | Country | Rows | First year | Last year |
45
+ |---------|-----:|-----------:|----------:|
46
+ | `AFG` | 237 | 1789 | 2025 |
47
+ | `BGD` | 237 | 1789 | 2025 |
48
+ | `CHN` | 237 | 1789 | 2025 |
49
+ | `IND` | 237 | 1789 | 2025 |
50
+ | `IRQ` | 237 | 1789 | 2025 |
51
+ | `KOR` | 237 | 1789 | 2025 |
52
+ | `KAZ` | 237 | 1789 | 2025 |
53
+ | `JPN` | 237 | 1789 | 2025 |
54
+ | `MMR` | 237 | 1789 | 2025 |
55
+ | `SAU` | 237 | 1789 | 2025 |
56
+ | `UZB` | 237 | 1789 | 2025 |
57
+ | `TUR` | 237 | 1789 | 2025 |
58
+ | `SYR` | 235 | 1789 | 2025 |
59
+ | `TWN` | 232 | 1789 | 2025 |
60
+ | `IDN` | 226 | 1800 | 2025 |
61
+ | ... | _33 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` | — | `1789` |
70
+ | `Liberal Political Institutions Index` | `float64` | — | `0.114` |
71
+ | `World region according to OWID` | `string` | — | `Asia` |
72
+
73
+ ## Usage
74
+
75
+ ```python
76
+ from datasets import load_dataset
77
+
78
+ ds = load_dataset("electricsheepasia/asia-owid-liberal-political-institutions-index")
79
+ df = ds["train"].to_pandas()
80
+ print(df.head())
81
+ ```
82
+
83
+ ### Filter to one country
84
+
85
+ ```python
86
+ indonesia = df[df["country_iso3"] == "IDN"]
87
+ ```
88
+
89
+ ### Time-series for a single indicator
90
+
91
+ ```python
92
+ sample = df.sort_values("year")
93
+ sample.plot(x="year", y="Liberal Political Institutions Index")
94
+ ```
95
+
96
+ ## Citation
97
+
98
+ ```bibtex
99
+ @misc{asia_owid_liberal_political_institutions_index_2025,
100
+ title = {Liberal Political Institutions Index | Asia (Our World in Data)},
101
+ author = {Our World in Data},
102
+ year = {2025},
103
+ url = {https://ourworldindata.org/grapher/liberal-political-institutions-index},
104
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia},
105
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-owid-liberal-political-institutions-index}}
106
+ }
107
+ ```
108
+
109
+ ## License
110
+
111
+ Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
112
+
113
+ Original data © Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Asia repackaging.
114
+
115
+ ## About Electric Sheep
116
+
117
+ 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.
118
+
119
+ Browse the full collection: [huggingface.co/electricsheepasia](https://huggingface.co/electricsheepasia)
120
+
121
+ ---
122
+
123
+ _Provenance: ingested 2026-06-06 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/liberal-political-institutions-index_