Kossisoroyce commited on
Commit
065da32
·
verified ·
1 Parent(s): aed5cf8

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +75 -60
README.md CHANGED
@@ -1,62 +1,77 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: REF_AREA
5
- dtype: string
6
- - name: Geographic area
7
- dtype: string
8
- - name: INDICATOR
9
- dtype: string
10
- - name: Indicator
11
- dtype: string
12
- - name: SEX
13
- dtype: string
14
- - name: Sex
15
- dtype: string
16
- - name: TIME_PERIOD
17
- dtype: int64
18
- - name: OBS_VALUE
19
- dtype: float64
20
- - name: UNIT_MEASURE
21
- dtype: string
22
- - name: Unit of measure
23
- dtype: string
24
- - name: OBS_STATUS
25
- dtype: string
26
- - name: Observation Status
27
- dtype: string
28
- - name: OBS_CONF
29
- dtype: string
30
- - name: Observation confidentaility
31
- dtype: string
32
- - name: OBS_FOOTNOTE
33
- dtype: string
34
- - name: DATA_SOURCE
35
- dtype: string
36
- - name: TIME_PERIOD_METHOD
37
- dtype: string
38
- - name: Time period activity related to when the data are collected
39
- dtype: string
40
- - name: COVERAGE_TIME
41
- dtype: string
42
- - name: AGE
43
- dtype: string
44
- - name: Current age
45
- dtype: string
46
- splits:
47
- - name: train
48
- num_bytes: 45727
49
- num_examples: 174
50
- - name: test
51
- num_bytes: 11449
52
- num_examples: 44
53
- download_size: 22409
54
- dataset_size: 57176
55
- configs:
56
- - config_name: default
57
- data_files:
58
- - split: train
59
- path: data/train-*
60
- - split: test
61
- path: data/test-*
62
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - africa
7
+ - unicef
8
+ - children
9
+ - food-security
10
+ - tabular
11
+ pretty_name: "Food Security — Africa (UNICEF)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # Food Security — Africa
15
+
16
+ **Source:** [UNICEF Data Warehouse](https://data.unicef.org/)
17
+ **Theme:** `FD` (food-security)
18
+ **Publisher:** United Nations Children's Fund (UNICEF)
19
+ **Coverage:** 19 African countries · 2017–2023 · 218 rows
20
+ **Indicators:** 12
21
+
22
+ ## About
23
+
24
+ The UNICEF Data Warehouse consolidates child-focused indicators across UNICEF
25
+ collaborators (WHO, World Bank, JMP, UIS, MICS-derived aggregates, etc.).
26
+ This dataset contains the **food-security** theme filtered to all 54 African
27
+ countries (ISO3-coded), repackaged in ML-ready Parquet by
28
+ [Electric Sheep Africa](https://huggingface.co/electricsheepafrica).
29
+
30
+ ## Schema
31
+
32
+ | Column | Type |
33
+ |--------|------|
34
+ | `REF_AREA` | string |
35
+ | `Geographic area` | string |
36
+ | `INDICATOR` | string |
37
+ | `Indicator` | string |
38
+ | `SEX` | string |
39
+ | `Sex` | string |
40
+ | `TIME_PERIOD` | int64 |
41
+ | `OBS_VALUE` | float64 |
42
+ | `UNIT_MEASURE` | string |
43
+ | `Unit of measure` | string |
44
+ | `OBS_STATUS` | string |
45
+ | `Observation Status` | string |
46
+ | `OBS_CONF` | string |
47
+ | `Observation confidentaility` | string |
48
+ | `OBS_FOOTNOTE` | string |
49
+ | `DATA_SOURCE` | string |
50
+ | `TIME_PERIOD_METHOD` | string |
51
+ | `Time period activity related to when the data are collected` | string |
52
+ | `COVERAGE_TIME` | string |
53
+ | `AGE` | string |
54
+ | `Current age` | string |
55
+
56
+ ### Key columns
57
+
58
+ - **`REF_AREA`** — ISO3 country code
59
+ - **`INDICATOR`** — UNICEF indicator code (see `data.unicef.org` for definitions)
60
+ - **`TIME_PERIOD`** — year of observation
61
+ - **`OBS_VALUE`** — indicator value
62
+ - **`SEX`**, **`AGE`**, **`RESIDENCE`**, **`WEALTH_QUINTILE`** — disaggregation dimensions where available
63
+ - **`DATA_SOURCE`** — survey / administrative source
64
+
65
+ ## Usage
66
+
67
+ ```python
68
+ from datasets import load_dataset
69
+ ds = load_dataset("electricsheepafrica/africa-unicef-food-security")
70
+ df = ds["train"].to_pandas()
71
+ ```
72
+
73
+ ## License
74
+
75
+ [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) — UNICEF open data
76
+ with attribution. Always cite UNICEF + the `DATA_SOURCE`/`CUSTODIAN`/`SOURCE_LINK`
77
+ columns embedded in each row for the original survey provider.