Kossisoroyce commited on
Commit
32a8f8a
·
verified ·
1 Parent(s): 506b4a3

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: 1557887
31
- num_examples: 8532
32
- - name: test
33
- num_bytes: 402381
34
- num_examples: 2134
35
- download_size: 98727
36
- dataset_size: 1960268
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: "Commodity Balances (non-food) (2010-) — Asia (FAOSTAT)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # Commodity Balances (non-food) (2010-) — Asia
15
+
16
+ **Source:** [FAOSTAT — Commodity Balances (non-food) (2010-)](https://www.fao.org/faostat/en/#data/CB)
17
+ **Domain code:** `CB`
18
+ **Publisher:** Food and Agriculture Organization of the United Nations (FAO)
19
+ **Coverage:** 42 Asian countries · 2010–2023 · 10,666 rows
20
+ **Items:** 6 · **Elements:** 6
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 **Commodity Balances (non-food) (2010-)** 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-cb")
50
+ df = ds["train"].to_pandas()
51
+ ```
52
+
53
+ ## Citation
54
+
55
+ ```
56
+ @misc{faostat_cb_asia,
57
+ title = {Commodity Balances (non-food) (2010-) — Asia},
58
+ author = {Food and Agriculture Organization of the United Nations},
59
+ year = {2023},
60
+ url = {https://www.fao.org/faostat/en/#data/CB},
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.