Olaroti commited on
Commit
8b76a25
·
verified ·
1 Parent(s): b38520d

Standardize Electric Sheep Africa dataset card

Browse files
Files changed (1) hide show
  1. README.md +94 -94
README.md CHANGED
@@ -5,90 +5,68 @@ language:
5
  task_categories:
6
  - tabular-classification
7
  - tabular-regression
8
- - time-series-forecasting
9
  multilinguality: monolingual
10
  size_categories:
11
  - 10K<n<100K
12
  tags:
13
- - tabular
14
- - africa
15
- - harvard-dataverse-(ifpri-africarising)
16
- - household-survey-microdata
17
- - ifpri
18
- - dataverse
19
- - africa-rising
20
- - microdata
21
- pretty_name: "Korean Labor and Income Panel Study (KLIPS), 1998-2206: Wave 1-9 (M1194) | Africa (Harvard Dataverse / AfricaRISING)"
 
 
 
 
 
 
 
22
  ---
23
 
24
- # Korean Labor and Income Panel Study (KLIPS), 1998-2206: Wave 1-9 (M1194) | Africa (Harvard Dataverse / AfricaRISING)
25
 
26
- 🌍 **87,613 observations** · **0 Africa countries** · **—–—** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
27
 
28
- ![rows](https://img.shields.io/badge/rows-87,613-blue) ![countries](https://img.shields.io/badge/countries-0-green) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
 
 
 
29
 
30
  ## TL;DR
31
 
32
- This dataset contains **87,613 observations** of `Household Survey Microdata` data across **0 Africa countries**.
33
-
34
- ## About the source
35
-
36
- - **Source:** [Harvard Dataverse (IFPRI AfricaRISING)](https://dataverse.harvard.edu/dataverse/africaRISING)
37
- - **Publisher:** International Food Policy Research Institute
38
- - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
39
- - **Topic:** Household Survey Microdata
40
-
41
- ## Geographic coverage
42
-
43
- 0 Africa countries · top rows shown below, sorted by row count:
44
-
45
- _Per-country coverage not computable for this schema._
46
-
47
- ## Schema
48
-
49
- | Column | Type | Description | Example |
50
- |--------|------|-------------|---------|
51
- | `PID` | `int64` | — | `101` |
52
- | `jobwave` | `int64` | | `1` |
53
- | `jobseq` | `int64` | — | `1` |
54
- | `jobnum` | `int64` | — | `101` |
55
- | `jobnumc` | `float64` | — | `101.0` |
56
- | `jobcens` | `int64` | — | `3` |
57
- | `jobtype` | `float64` | | `1.0` |
58
- | `jobclass` | `float64` | | `1.0` |
59
- | `mainjob` | `float64` | | `1.0` |
60
- | `HHID98` | `float64` | | `1.0` |
61
- | `HMEM98` | `float64` | — | `1.0` |
62
- | `HHID99` | `float64` | — | `1.0` |
63
- | `HMEM99` | `float64` | — | `1.0` |
64
- | `HHID00` | `float64` | — | `1.0` |
65
- | `HMEM00` | `float64` | — | `1.0` |
66
- | `HHID01` | `float64` | — | `2.0` |
67
- | `HMEM01` | `float64` | — | `1.0` |
68
- | `HHID02` | `float64` | — | `1.0` |
69
- | `HMEM02` | `float64` | — | `1.0` |
70
- | `HHID03` | `float64` | — | `1.0` |
71
- | `HMEM03` | `float64` | — | `1.0` |
72
- | `HHID04` | `float64` | — | `1.0` |
73
- | `HMEM04` | `float64` | — | `2.0` |
74
- | `HHID05` | `float64` | — | `1.0` |
75
- | `HMEM05` | `float64` | — | `1.0` |
76
- | `HHID06` | `float64` | — | `1.0` |
77
- | `HMEM06` | `float64` | — | `1.0` |
78
- | `J001` | `float64` | — | `1988.0` |
79
- | `J002` | `float64` | — | `10.0` |
80
- | `J003` | `float64` | — | `20.0` |
81
- | `j004` | `float64` | — | `2001.0` |
82
- | `j005` | `float64` | — | `6.0` |
83
- | `j006` | `float64` | — | `10.0` |
84
- | `j007` | `float64` | — | `1.0` |
85
- | `j008` | `float64` | — | `2002.0` |
86
- | `j009` | `float64` | — | `4.0` |
87
- | `j010` | `float64` | — | `2003.0` |
88
- | `j011` | `float64` | — | `5.0` |
89
- | `j012` | `float64` | — | `999.0` |
90
- | `j013` | `float64` | — | `3.0` |
91
- | _... (113 more columns)_ | | | |
92
 
93
  ## Usage
94
 
@@ -96,48 +74,70 @@ _Per-country coverage not computable for this schema._
96
  from datasets import load_dataset
97
 
98
  ds = load_dataset("electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav")
99
- df = ds["train"].to_pandas()
100
- print(df.head())
 
 
 
 
101
  ```
102
 
103
- ### Filter to one country
104
 
105
  ```python
106
- kenya = df[df["country_iso3"] == "KEN"]
 
 
 
 
 
107
  ```
108
 
109
- ### Time-series for a single indicator
110
 
111
- ```python
112
- sample = df.sort_values("year")
113
- sample.plot(x="year", y="value")
114
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
 
116
  ## Citation
117
 
118
  ```bibtex
119
- @misc{africa_arising_korean_labor_and_income_panel_study_klips_1998_2206_wav_2026,
120
- title = {Korean Labor and Income Panel Study (KLIPS), 1998-2206: Wave 1-9 (M1194) | Africa (Harvard Dataverse / AfricaRISING)},
121
- author = {International Food Policy Research Institute},
122
  year = {2026},
123
- url = {https://dataverse.harvard.edu/dataverse/africaRISING},
124
- publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
125
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav}}
126
  }
127
  ```
128
 
129
  ## License
130
 
131
- Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
132
-
133
- Original data © International Food Policy Research Institute. When using this dataset, please cite both the original source above and the Electric Sheep Africa repackaging.
134
 
135
- ## About Electric Sheep
136
 
137
- Electric Sheep Africa is part of the Electric Sheep mission: a unified, ML-ready data layer for Africa 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.
138
 
139
- Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
140
 
141
  ---
142
 
143
- _Provenance: ingested 2026-05-26 via the Electric Sheep pipeline. Source URL: https://dataverse.harvard.edu/dataverse/africaRISING_
 
5
  task_categories:
6
  - tabular-classification
7
  - tabular-regression
 
8
  multilinguality: monolingual
9
  size_categories:
10
  - 10K<n<100K
11
  tags:
12
+ - "africa"
13
+ - "electric-sheep-africa"
14
+ - "open-data"
15
+ - "metadata-backed"
16
+ - "agriculture-food"
17
+ - "parquet"
18
+ - "tabular"
19
+ - "text"
20
+ - "harvard-dataverse-ifpri-africarising"
21
+ - "household-survey-microdata"
22
+ - "ifpri"
23
+ - "dataverse"
24
+ - "africa-rising"
25
+ - "microdata"
26
+ - "food"
27
+ pretty_name: "Korean Labor and Income Panel Study (KLIPS), 1998-2206: Wave 1-9 (M1194) | Africa (Harvard Dataverse / AfricaRISING) | Africa (Electric Sheep Africa metadata inventory)"
28
  ---
29
 
30
+ # Korean Labor and Income Panel Study (KLIPS), 1998-2206: Wave 1-9 (M1194) | Africa (Harvard Dataverse / AfricaRISING) | Africa (Electric Sheep Africa metadata inventory)
31
 
32
+ **Size category:** `10K<n<100K` - **Formats:** `parquet` - **Sector:** agriculture_food - *Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
33
 
34
+ ![size](https://img.shields.io/badge/size-10K%3Cn%3C100K-blue)
35
+ ![sector](https://img.shields.io/badge/sector-agriculture_food-green)
36
+ ![downloads](https://img.shields.io/badge/HF_downloads-9-orange)
37
+ ![license](https://img.shields.io/badge/license-cc--by--4.0-lightgrey)
38
 
39
  ## TL;DR
40
 
41
+ This dataset is part of the Electric Sheep Africa catalog on Hugging Face. It is indexed for African data discovery with standardized metadata, loading guidance, provenance notes, and analyst-oriented context.
42
+
43
+ ## What This Dataset Covers
44
+
45
+ Public datasets help analysts inspect structured evidence, build reproducible workflows, and compare patterns across domains.
46
+
47
+ Dataset context from the existing Hugging Face card: Korean Labor and Income Panel Study (KLIPS), 1998-2206: Wave 1-9 (M1194) | Africa (Harvard Dataverse / AfricaRISING) 🌍 87,613 observations · 0 Africa countries · —–— · Repackaged by Electric Sheep Africa TL;DR This dataset contains 87,613 observations of Household Survey Microdata data across 0 Africa countries. About the source Source: Harvard Dataverse (IFPRI AfricaRISING) Publisher: International Food Policy Research Institute License: cc-by-4.0 Topic:… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav.
48
+
49
+ ## Dataset Profile
50
+
51
+ | Field | Value |
52
+ |---|---|
53
+ | Hugging Face repo | [`electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav`](https://huggingface.co/datasets/electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav) |
54
+ | Sector | agriculture_food |
55
+ | Topic tags | tabular, harvard-dataverse-(ifpri-africarising), household-survey-microdata, ifpri, dataverse, africa-rising, microdata |
56
+ | Modalities | `tabular`, `text` |
57
+ | Formats | `parquet` |
58
+ | Size category | `10K<n<100K` |
59
+ | Countries | Africa-wide or source-defined African coverage |
60
+ | ISO3 coverage | `not declared` |
61
+ | Last modified on HF | `2026-05-26 15:04:09+00:00` |
62
+ | Inventory snapshot | `2026-07-16T16:00:34Z` |
63
+
64
+ ## How To Read This Dataset
65
+
66
+ - Start from the repository files and the dataset viewer when available.
67
+ - Treat the README context as a fast orientation layer; confirm variable definitions and units in the data files before modeling.
68
+ - Use explicit country columns when present. When geography is only implied by the title or source metadata, document that assumption in downstream analysis.
69
+ - Preserve missing values until you have a defensible imputation rule.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
 
71
  ## Usage
72
 
 
74
  from datasets import load_dataset
75
 
76
  ds = load_dataset("electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav")
77
+ print(ds)
78
+
79
+ split_name = next(iter(ds))
80
+ table = ds[split_name]
81
+ print(table.features)
82
+ print(table[:3])
83
  ```
84
 
85
+ ### Convert To Pandas When Tabular
86
 
87
  ```python
88
+ from datasets import Dataset
89
+
90
+ first_split = ds[next(iter(ds))]
91
+ if isinstance(first_split, Dataset):
92
+ df = first_split.to_pandas()
93
+ print(df.head())
94
  ```
95
 
96
+ ## Data Quality Notes
97
 
98
+ - This card was standardized from the Electric Sheep Africa Hugging Face metadata inventory.
99
+ - Exact schema, row counts, and source files should be inspected in the repository data files.
100
+ - Metadata gaps from the inventory: country, upstream_publisher.
101
+ - Do not infer policy meaning from labels alone; confirm definitions, units, and methods in the source material.
102
+
103
+ ## Source And Provenance
104
+
105
+ - **Source context:** Electric Sheep Africa metadata inventory
106
+ - **Publisher/source attribution:** Public dataset metadata
107
+ - **License:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
108
+ - **Hugging Face URL:** [https://huggingface.co/datasets/electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav](https://huggingface.co/datasets/electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav)
109
+ - **Inventory retrieved at:** `2026-07-16T16:00:34Z`
110
+
111
+ ## Suggested Analyses
112
+
113
+ - Inspect schema and missingness before modeling.
114
+ - Profile variables by geography, time, and subgroup columns where present.
115
+ - Join with other Electric Sheep Africa datasets using explicit country, year, and indicator fields when available.
116
+ - Build reproducible notebooks that cite both the original source context and the Electric Sheep Africa Hugging Face repo.
117
 
118
  ## Citation
119
 
120
  ```bibtex
121
+ @misc{electric_sheep_africa_africa_arising_korean_labor_and_income_panel_study_klips_1998_2206_wav_2026,
122
+ title = {Korean Labor and Income Panel Study (KLIPS), 1998-2206: Wave 1-9 (M1194) | Africa (Harvard Dataverse / AfricaRISING) | Africa (Electric Sheep Africa metadata inventory)},
123
+ author = {Public dataset metadata},
124
  year = {2026},
125
+ url = {https://huggingface.co/datasets/electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav},
126
+ publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa},
127
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-arising-korean-labor-and-income-panel-study-klips-1998-2206-wav}}
128
  }
129
  ```
130
 
131
  ## License
132
 
133
+ Released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
 
 
134
 
135
+ Original source rights remain with the original publisher or data provider. Electric Sheep Africa engineering standardizes discovery metadata, documentation, and usage guidance for analysis on Hugging Face.
136
 
137
+ ## About Electric Sheep Africa
138
 
139
+ Electric Sheep Africa publishes ML-ready African public datasets on Hugging Face.
140
 
141
  ---
142
 
143
+ Provenance: metadata-backed README standardized 2026-08-12 by the Electric Sheep Africa README system. Inventory source: `catalog/esa_metadata_inventory/master_metadata.jsonl`.