Kossisoroyce commited on
Commit
2379ea0
·
verified ·
1 Parent(s): bccd40e

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +65 -42
README.md CHANGED
@@ -1,44 +1,67 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: Domain Code
5
- dtype: string
6
- - name: Domain
7
- dtype: string
8
- - name: Area Code
9
- dtype: int64
10
- - name: Area
11
- dtype: string
12
- - name: Element Code
13
- dtype: int64
14
- - name: Element
15
- dtype: string
16
- - name: Item Code
17
- dtype: int64
18
- - name: Item
19
- dtype: string
20
- - name: Year Code
21
- dtype: int64
22
- - name: Year
23
- dtype: string
24
- - name: Unit
25
- dtype: string
26
- - name: Value
27
- dtype: float64
28
- splits:
29
- - name: train
30
- num_bytes: 2303274
31
- num_examples: 14035
32
- - name: test
33
- num_bytes: 579670
34
- num_examples: 3509
35
- download_size: 231090
36
- dataset_size: 2882944
37
- configs:
38
- - config_name: default
39
- data_files:
40
- - split: train
41
- path: data/train-*
42
- - split: test
43
- path: data/test-*
44
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - asia
7
+ - faostat
8
+ - agriculture
9
+ - food-security
10
+ - tabular
11
+ pretty_name: "Deflators — Asia (FAOSTAT)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # Deflators — Asia
15
+
16
+ **Source:** [FAOSTAT — Deflators](https://www.fao.org/faostat/en/#data/PD)
17
+ **Domain code:** `PD`
18
+ **Publisher:** Food and Agriculture Organization of the United Nations (FAO)
19
+ **Coverage:** 43 Asian countries · 1970–2024 · 17,544 rows
20
+ **Items:** 4 · **Elements:** 2
21
+
22
+ ## About
23
+
24
+ FAOSTAT is the world's largest and most comprehensive statistical database on food, agriculture, fisheries,
25
+ forestry, and rural development. This dataset contains the **Deflators** domain filtered to all available
26
+ Asian countries, repackaged in ML-ready Parquet format by [Electric Sheep Asia](https://huggingface.co/electricsheepasia).
27
+
28
+ ## Schema
29
+
30
+ | Column | Type |
31
+ |--------|------|
32
+ | `Domain Code` | object |
33
+ | `Domain` | object |
34
+ | `Area Code` | int64 |
35
+ | `Area` | object |
36
+ | `Element Code` | int64 |
37
+ | `Element` | object |
38
+ | `Item Code` | int64 |
39
+ | `Item` | object |
40
+ | `Year Code` | int64 |
41
+ | `Year` | object |
42
+ | `Unit` | object |
43
+ | `Value` | float64 |
44
+
45
+ ## Usage
46
+
47
+ ```python
48
+ from datasets import load_dataset
49
+ ds = load_dataset("electricsheepasia/asia-faostat-pd")
50
+ df = ds["train"].to_pandas()
51
+ ```
52
+
53
+ ## Citation
54
+
55
+ ```
56
+ @misc{faostat_pd_asia,
57
+ title = {Deflators — Asia},
58
+ author = {Food and Agriculture Organization of the United Nations},
59
+ year = {2024},
60
+ url = {https://www.fao.org/faostat/en/#data/PD},
61
+ note = {Repackaged by Electric Sheep Asia}
62
+ }
63
+ ```
64
+
65
+ ## License
66
+
67
+ [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) — FAO open data.