CollosaAI commited on
Commit
9fb9c0e
·
verified ·
1 Parent(s): 78914b0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +120 -26
README.md CHANGED
@@ -1,28 +1,122 @@
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: Death rate from alzheimer disease and other dementias among both sexes
11
- dtype: float64
12
- splits:
13
- - name: train
14
- num_bytes: 28518
15
- num_examples: 827
16
- - name: test
17
- num_bytes: 7496
18
- num_examples: 207
19
- download_size: 10821
20
- dataset_size: 36014
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- - split: test
27
- path: data/test-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - death-rate-from-alzheimers-other-dementias-ghe
17
+ - owid
18
+ - long-run-series
19
+ - time-series
20
+ pretty_name: "Death Rate From Alzheimers Other Dementias Ghe | Asia (Our World in Data)"
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Death Rate From Alzheimers Other Dementias Ghe | Asia (Our World in Data)
24
+
25
+ 🌏 **1,034 observations** · **47 Asia countries** · **2000–2021** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)*
26
+
27
+ ![rows](https://img.shields.io/badge/rows-1,034-blue) ![countries](https://img.shields.io/badge/countries-47-green) ![years](https://img.shields.io/badge/years-2000–2021-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
28
+
29
+ ## TL;DR
30
+
31
+ This dataset contains **1,034 observations** of `Death Rate From Alzheimers Other Dementias Ghe` data across **47 Asia countries**, spanning **2000–2021**.
32
+
33
+ ## About the source
34
+
35
+ - **Source:** [Our World in Data](https://ourworldindata.org/grapher/death-rate-from-alzheimers-other-dementias-ghe)
36
+ - **Publisher:** Our World in Data
37
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
38
+ - **Topic:** Death Rate From Alzheimers Other Dementias Ghe
39
+
40
+ ## Geographic coverage
41
+
42
+ 47 Asia countries · top rows shown below, sorted by row count:
43
+
44
+ | Country | Rows | First year | Last year |
45
+ |---------|-----:|-----------:|----------:|
46
+ | `AFG` | 22 | 2000 | 2021 |
47
+ | `ARE` | 22 | 2000 | 2021 |
48
+ | `ARM` | 22 | 2000 | 2021 |
49
+ | `AZE` | 22 | 2000 | 2021 |
50
+ | `BGD` | 22 | 2000 | 2021 |
51
+ | `BHR` | 22 | 2000 | 2021 |
52
+ | `BRN` | 22 | 2000 | 2021 |
53
+ | `BTN` | 22 | 2000 | 2021 |
54
+ | `CHN` | 22 | 2000 | 2021 |
55
+ | `CYP` | 22 | 2000 | 2021 |
56
+ | `GEO` | 22 | 2000 | 2021 |
57
+ | `IDN` | 22 | 2000 | 2021 |
58
+ | `IND` | 22 | 2000 | 2021 |
59
+ | `IRN` | 22 | 2000 | 2021 |
60
+ | `IRQ` | 22 | 2000 | 2021 |
61
+ | ... | _32 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` | — | `2000` |
70
+ | `Death rate from alzheimer disease and other dementias among both sexes` | `float64` | — | `4.62` |
71
+
72
+ ## Usage
73
+
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
+ ds = load_dataset("electricsheepasia/asia-owid-death-rate-from-alzheimers-other-dementias-ghe")
78
+ df = ds["train"].to_pandas()
79
+ print(df.head())
80
+ ```
81
+
82
+ ### Filter to one country
83
+
84
+ ```python
85
+ indonesia = df[df["country_iso3"] == "IDN"]
86
+ ```
87
+
88
+ ### Time-series for a single indicator
89
+
90
+ ```python
91
+ sample = df.sort_values("year")
92
+ sample.plot(x="year", y="Death rate from alzheimer disease and other dementias among both sexes")
93
+ ```
94
+
95
+ ## Citation
96
+
97
+ ```bibtex
98
+ @misc{asia_owid_death_rate_from_alzheimers_other_dementias_ghe_2021,
99
+ title = {Death Rate From Alzheimers Other Dementias Ghe | Asia (Our World in Data)},
100
+ author = {Our World in Data},
101
+ year = {2021},
102
+ url = {https://ourworldindata.org/grapher/death-rate-from-alzheimers-other-dementias-ghe},
103
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia},
104
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-owid-death-rate-from-alzheimers-other-dementias-ghe}}
105
+ }
106
+ ```
107
+
108
+ ## License
109
+
110
+ Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
111
+
112
+ Original data © Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Asia repackaging.
113
+
114
+ ## About Electric Sheep
115
+
116
+ 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.
117
+
118
+ Browse the full collection: [huggingface.co/electricsheepasia](https://huggingface.co/electricsheepasia)
119
+
120
+ ---
121
+
122
+ _Provenance: ingested 2026-06-03 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/death-rate-from-alzheimers-other-dementias-ghe_