lucyi-morn commited on
Commit
e19d629
·
verified ·
1 Parent(s): 32c1423

Add ML-ready official indicator dataset

Browse files
README.md ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - tabular-classification
7
+ - tabular-regression
8
+ multilinguality: monolingual
9
+ size_categories:
10
+ - n<1K
11
+ tags:
12
+ - tabular
13
+ - xlsx
14
+ - africa
15
+ - nigeria
16
+ - official-statistics
17
+ - open-data
18
+ - economics
19
+ pretty_name: "Automotive Gas Oil (Diesel) Price Watch | Africa (Nigeria official open data)"
20
+ ---
21
+
22
+ # Automotive Gas Oil (Diesel) Price Watch | Africa (Nigeria official open data)
23
+
24
+ 43 rows - 1 Africa country - 2025 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)
25
+
26
+ ![rows](https://img.shields.io/badge/rows-43-blue)
27
+ ![countries](https://img.shields.io/badge/countries-1-green)
28
+ ![years](https://img.shields.io/badge/years-2025-orange)
29
+ ![indicators](https://img.shields.io/badge/indicators-0-purple)
30
+ ![license](https://img.shields.io/badge/license-other-lightgrey)
31
+
32
+ ## TL;DR
33
+
34
+ This dataset packages one official `XLSX` resource from **Nigeria** as
35
+ ML-ready Parquet. The source file is the provenance boundary; all usable
36
+ indicators or tabular columns from the resource stay together in this repo.
37
+
38
+ ## About the source
39
+
40
+ - **Source:** [Automotive Gas Oil (Diesel) Price Watch](https://microdata.nigerianstat.gov.ng/index.php/catalog/158/related-materials)
41
+ - **Publisher:** National Bureau of Statistics, Nigeria
42
+ - **Resource:** [AGO May 2025 Tables](https://microdata.nigerianstat.gov.ng/index.php/catalog/158/download/1248)
43
+ - **Format:** `XLSX`
44
+ - **License:** [Other open license]()
45
+ - **Packaging mode:** `tabular_resource`
46
+
47
+ ## Geographic coverage
48
+
49
+ 1 Africa country:
50
+
51
+ | Country | Rows | First year | Last year | Name |
52
+ |---------|-----:|-----------:|----------:|------|
53
+ | `NGA` | 43 | 2025 | 2025 | `Nigeria` |
54
+
55
+ ## Indicators or Resource Contents
56
+
57
+ - This source file is packaged as a normalized tabular resource.
58
+
59
+ ## Schema
60
+
61
+ | Column | Type | Description | Example |
62
+ |--------|------|-------------|---------|
63
+ | `source_record_id` | `string` | Stable row identifier for tabular resources. | `nbs-nada-158-1248:diesel-may-2025:0` |
64
+ | `country_iso3` | `string` | ISO3 country code. | `NGA` |
65
+ | `country_name` | `string` | Country name. | `Nigeria` |
66
+ | `source_sheet` | `string` | Workbook sheet name, when the source is a spreadsheet. | `DIESEL MAY 2025` |
67
+ | `year` | `Int64` | Observation year. | `2025` |
68
+ | `north_central` | `string` | Source column. | `Abuja` |
69
+ | `d_1312_0583071690216` | `float64` | Source column. | `1254.0` |
70
+ | `d_1867_9676395942708` | `float64` | Source column. | `1764.1666666666667` |
71
+ | `1920` | `float64` | Source column. | `1800.16666666667` |
72
+ | `d_46_355756991940844` | `float64` | Source column. | `43.55396065922408` |
73
+ | `d_3_1840088232035746` | `float64` | Source column. | `2.0406235238546917` |
74
+ | `south_east` | `string` | Source column. | `North Central` |
75
+ | `d_1632_330266209332` | `float64` | Source column. | `1920.4733508808813` |
76
+ | `source_period_start_year` | `Int64` | First year inferred from source resource metadata. | `2025` |
77
+ | `source_period_end_year` | `Int64` | Last year inferred from source resource metadata. | `2025` |
78
+ | `source_period_label` | `string` | Human-readable period inferred from source resource metadata. | `2025` |
79
+ | `source_provider` | `string` | Publishing organization. | `National Bureau of Statistics, Nigeria` |
80
+ | `source_dataset` | `string` | Source package title. | `Automotive Gas Oil (Diesel) Price Watch` |
81
+ | `source_resource` | `string` | Source resource title. | `AGO May 2025 Tables` |
82
+ | `source_package_id` | `string` | CKAN package UUID. | `NGA-NBS-AGO` |
83
+ | `source_resource_id` | `string` | CKAN resource UUID. | `nbs-nada-158-1248` |
84
+ | `source_url` | `string` | Original source resource URL. | `https://microdata.nigerianstat.gov.ng/index.php/catalog/158/download/124` |
85
+ | `license_id` | `string` | Source license identifier. | `other-open` |
86
+ | `retrieved_at` | `string` | UTC retrieval timestamp. | `2026-07-19T04:13:01Z` |
87
+
88
+ ## Usage
89
+
90
+ ```python
91
+ from datasets import load_dataset
92
+
93
+ ds = load_dataset("electricsheepafrica/africa-nigeria-automotive-gas-oil-diesel-price-watch-eb4fccc7")
94
+ df = ds["train"].to_pandas()
95
+ print(df.head())
96
+ ```
97
+
98
+ ### Filter to one country
99
+
100
+ ```python
101
+ sample_country = df[df["country_iso3"] == "NGA"]
102
+ ```
103
+
104
+ ### Work with indicators
105
+
106
+ ```python
107
+ if "indicator_id" in df.columns:
108
+ print(df["indicator_id"].value_counts().head())
109
+ sample = df.sort_values([c for c in ["indicator_id", "year"] if c in df.columns])
110
+ ```
111
+
112
+ ## Citation
113
+
114
+ ```bibtex
115
+ @misc{electric_sheep_africa_africa_nigeria_automotive_gas_oil_diesel_price_watch_eb4fccc7_2025,
116
+ title = {Automotive Gas Oil (Diesel) Price Watch | Africa (Nigeria official open data)},
117
+ author = {National Bureau of Statistics, Nigeria},
118
+ year = {2025},
119
+ url = {https://microdata.nigerianstat.gov.ng/index.php/catalog/158/related-materials},
120
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
121
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-nigeria-automotive-gas-oil-diesel-price-watch-eb4fccc7}}
122
+ }
123
+ ```
124
+
125
+ ## License
126
+
127
+ Released under [Other open license]().
128
+
129
+ Original data (c) National Bureau of Statistics, Nigeria. When using this dataset, please cite both the
130
+ original source above and the Electric Sheep Africa repackaging.
131
+
132
+ ## About Electric Sheep
133
+
134
+ Electric Sheep Africa is part of the Electric Sheep mission: a unified,
135
+ ML-ready data layer for Africa on Hugging Face. We pull data from authoritative
136
+ open sources, normalize the schemas, package as Parquet, and publish with
137
+ consistent dataset cards so researchers and developers can use `load_dataset()`
138
+ to start working in seconds.
139
+
140
+ Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
141
+
142
+ ---
143
+
144
+ Provenance: ingested 2026-07-19 via the Electric Sheep pipeline. Source URL:
145
+ https://microdata.nigerianstat.gov.ng/index.php/catalog/158/download/1248
data/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6edd5b90c53d084140b71776fc21bc03cae45985c3cf96c316e1a5e0ce5efbe3
3
+ size 18768
metadata/source_snapshot.json ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "columns": [
3
+ "source_record_id",
4
+ "country_iso3",
5
+ "country_name",
6
+ "source_sheet",
7
+ "year",
8
+ "north_central",
9
+ "d_1312_0583071690216",
10
+ "d_1867_9676395942708",
11
+ "1920",
12
+ "d_46_355756991940844",
13
+ "d_3_1840088232035746",
14
+ "south_east",
15
+ "d_1632_330266209332",
16
+ "source_period_start_year",
17
+ "source_period_end_year",
18
+ "source_period_label",
19
+ "source_provider",
20
+ "source_dataset",
21
+ "source_resource",
22
+ "source_package_id",
23
+ "source_resource_id",
24
+ "source_url",
25
+ "license_id",
26
+ "retrieved_at"
27
+ ],
28
+ "generated_at": "2026-07-19T04:13:06Z",
29
+ "indicator_count": 0,
30
+ "mode": "tabular_resource",
31
+ "repo_id": "electricsheepafrica/africa-nigeria-automotive-gas-oil-diesel-price-watch-eb4fccc7",
32
+ "rows": 43,
33
+ "source": {
34
+ "api_base_url": "https://microdata.nigerianstat.gov.ng/index.php/api/catalog/search",
35
+ "country_iso3": "NGA",
36
+ "country_name": "Nigeria",
37
+ "group_names": "NATIONAL ECONOMY; AGO May 2025 Tables; Diesel_Report_May_2025.xlsx; 0",
38
+ "license_id": "other-open",
39
+ "license_title": "Public NBS related material",
40
+ "license_url": "https://microdata.nigerianstat.gov.ng/index.php/catalog/158",
41
+ "organization_title": "National Bureau of Statistics, Nigeria",
42
+ "package_id": "NGA-NBS-AGO",
43
+ "package_name": "nga-nbs-ago",
44
+ "package_notes": "The data collection was conducted in sample outlets spread across 774 local government areas in all the 36 states and the FCT, Abuja. The data was collected from over 10,000 respondents located in the outlets. The estimates were derived from the weights generated from household expenditure on fuel and the actual prices households bought those fuels. This data collection exercise was done by over 700 NBS staff in all the states and the FCT and were closely monitored by quality control officers with sophisticated monitoring guidelines. The average prices are reported for each state and the FCT, Abuja accordingly.",
45
+ "package_page_url": "https://microdata.nigerianstat.gov.ng/index.php/catalog/158/related-materials",
46
+ "package_title": "Automotive Gas Oil (Diesel) Price Watch",
47
+ "package_type": "document",
48
+ "portal_title": "National Bureau of Statistics Microdata Catalog",
49
+ "portal_url": "https://microdata.nigerianstat.gov.ng",
50
+ "resource_created": "2025-01-16T09:16:59+00:00",
51
+ "resource_description": "Table [tbl]",
52
+ "resource_filename": "Diesel_Report_May_2025.xlsx",
53
+ "resource_format": "XLSX",
54
+ "resource_id": "nbs-nada-158-1248",
55
+ "resource_last_modified": "2025-01-16T09:24:47+00:00",
56
+ "resource_mimetype": "",
57
+ "resource_name": "AGO May 2025 Tables",
58
+ "resource_position": "11",
59
+ "resource_url": "https://microdata.nigerianstat.gov.ng/index.php/catalog/158/download/1248",
60
+ "source_catalog_id": "158",
61
+ "source_idno": "NGA-NBS-AGO",
62
+ "source_total_downloads": "48626",
63
+ "source_total_views": "46499",
64
+ "tag_names": "document; AGO; Table [tbl]; Other Materials"
65
+ },
66
+ "year_max": 2025,
67
+ "year_min": 2025
68
+ }