Olaroti commited on
Commit
cf7e5f3
·
verified ·
1 Parent(s): 95c95c0

Add ML-ready official indicator dataset

Browse files
README.md ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - tabular-regression
7
+ - time-series-forecasting
8
+ multilinguality: monolingual
9
+ size_categories:
10
+ - n<1K
11
+ tags:
12
+ - tabular
13
+ - zip
14
+ - africa
15
+ - nigeria
16
+ - official-statistics
17
+ - open-data
18
+ - economics
19
+ pretty_name: "Premium Motor Spirit (Petrol) Price Watch | Africa (Nigeria official open data)"
20
+ ---
21
+
22
+ # Premium Motor Spirit (Petrol) Price Watch | Africa (Nigeria official open data)
23
+
24
+ 116 rows - 1 Africa country - 2025-2026 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)
25
+
26
+ ![rows](https://img.shields.io/badge/rows-116-blue)
27
+ ![countries](https://img.shields.io/badge/countries-1-green)
28
+ ![years](https://img.shields.io/badge/years-2025-2026-orange)
29
+ ![indicators](https://img.shields.io/badge/indicators-1-purple)
30
+ ![license](https://img.shields.io/badge/license-other-lightgrey)
31
+
32
+ ## TL;DR
33
+
34
+ This dataset packages one official `ZIP` 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:** [Premium Motor Spirit (Petrol) Price Watch](https://microdata.nigerianstat.gov.ng/index.php/catalog/157/related-materials)
41
+ - **Publisher:** National Bureau of Statistics, Nigeria
42
+ - **Resource:** [PMS Report February 2026](https://microdata.nigerianstat.gov.ng/index.php/catalog/157/download/1374)
43
+ - **Format:** `ZIP`
44
+ - **License:** [Other open license]()
45
+ - **Packaging mode:** `indicator_long`
46
+
47
+ ## Geographic coverage
48
+
49
+ 1 Africa country:
50
+
51
+ | Country | Rows | First year | Last year | Name |
52
+ |---------|-----:|-----------:|----------:|------|
53
+ | `NGA` | 116 | 2025 | 2026 | `Nigeria` |
54
+
55
+ ## Indicators or Resource Contents
56
+
57
+ - `premium-motor-spirit-petrol-price-watch-006821a8` - Premium Motor Spirit (Petrol) Price Watch
58
+
59
+ ## Schema
60
+
61
+ | Column | Type | Description | Example |
62
+ |--------|------|-------------|---------|
63
+ | `indicator_id` | `string` | Stable indicator identifier. | `premium-motor-spirit-petrol-price-watch-006821a8` |
64
+ | `indicator_name` | `string` | Human-readable indicator name. | `Premium Motor Spirit (Petrol) Price Watch` |
65
+ | `country_iso3` | `string` | ISO3 country code. | `NGA` |
66
+ | `country_name` | `string` | Country name. | `Nigeria` |
67
+ | `year` | `Int64` | Observation year. | `2025` |
68
+ | `value` | `float64` | Numeric observation value. | `1272.0` |
69
+ | `unit` | `string` | Measurement unit, when available. | `source_units_unspecified` |
70
+ | `dimension_state` | `string` | Source dimension. | `Abia` |
71
+ | `dimension_zone` | `string` | Source dimension. | `South East` |
72
+ | `dimension_average_price` | `string` | Source dimension. | `1058.7482499138364` |
73
+ | `source_period_start_year` | `Int64` | First year inferred from source resource metadata. | `2025` |
74
+ | `source_period_end_year` | `Int64` | Last year inferred from source resource metadata. | `2026` |
75
+ | `source_period_label` | `string` | Human-readable period inferred from source resource metadata. | `2025-2026` |
76
+ | `source_provider` | `string` | Publishing organization. | `National Bureau of Statistics, Nigeria` |
77
+ | `source_dataset` | `string` | Source package title. | `Premium Motor Spirit (Petrol) Price Watch` |
78
+ | `source_resource` | `string` | Source resource title. | `PMS Report February 2026` |
79
+ | `source_package_id` | `string` | CKAN package UUID. | `NGA-NBS-PMS` |
80
+ | `source_resource_id` | `string` | CKAN resource UUID. | `nbs-nada-157-1374` |
81
+ | `source_url` | `string` | Original source resource URL. | `https://microdata.nigerianstat.gov.ng/index.php/catalog/157/download/137` |
82
+ | `license_id` | `string` | Source license identifier. | `other-open` |
83
+ | `retrieved_at` | `string` | UTC retrieval timestamp. | `2026-07-19T04:13:01Z` |
84
+
85
+ ## Usage
86
+
87
+ ```python
88
+ from datasets import load_dataset
89
+
90
+ ds = load_dataset("electricsheepafrica/africa-nigeria-premium-motor-spirit-petrol-price-watch-006821a8")
91
+ df = ds["train"].to_pandas()
92
+ print(df.head())
93
+ ```
94
+
95
+ ### Filter to one country
96
+
97
+ ```python
98
+ sample_country = df[df["country_iso3"] == "NGA"]
99
+ ```
100
+
101
+ ### Work with indicators
102
+
103
+ ```python
104
+ if "indicator_id" in df.columns:
105
+ print(df["indicator_id"].value_counts().head())
106
+ sample = df.sort_values([c for c in ["indicator_id", "year"] if c in df.columns])
107
+ ```
108
+
109
+ ## Citation
110
+
111
+ ```bibtex
112
+ @misc{electric_sheep_africa_africa_nigeria_premium_motor_spirit_petrol_price_watch_006821a8_2026,
113
+ title = {Premium Motor Spirit (Petrol) Price Watch | Africa (Nigeria official open data)},
114
+ author = {National Bureau of Statistics, Nigeria},
115
+ year = {2026},
116
+ url = {https://microdata.nigerianstat.gov.ng/index.php/catalog/157/related-materials},
117
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
118
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-nigeria-premium-motor-spirit-petrol-price-watch-006821a8}}
119
+ }
120
+ ```
121
+
122
+ ## License
123
+
124
+ Released under [Other open license]().
125
+
126
+ Original data (c) National Bureau of Statistics, Nigeria. When using this dataset, please cite both the
127
+ original source above and the Electric Sheep Africa repackaging.
128
+
129
+ ## About Electric Sheep
130
+
131
+ Electric Sheep Africa is part of the Electric Sheep mission: a unified,
132
+ ML-ready data layer for Africa on Hugging Face. We pull data from authoritative
133
+ open sources, normalize the schemas, package as Parquet, and publish with
134
+ consistent dataset cards so researchers and developers can use `load_dataset()`
135
+ to start working in seconds.
136
+
137
+ Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
138
+
139
+ ---
140
+
141
+ Provenance: ingested 2026-07-19 via the Electric Sheep pipeline. Source URL:
142
+ https://microdata.nigerianstat.gov.ng/index.php/catalog/157/download/1374
data/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b49692d622eb4ce5a8c725681e0abe14fc2a0707787b8e3573d901195e14ede9
3
+ size 16175
metadata/source_snapshot.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "columns": [
3
+ "indicator_id",
4
+ "indicator_name",
5
+ "country_iso3",
6
+ "country_name",
7
+ "year",
8
+ "value",
9
+ "unit",
10
+ "dimension_state",
11
+ "dimension_zone",
12
+ "dimension_average_price",
13
+ "source_period_start_year",
14
+ "source_period_end_year",
15
+ "source_period_label",
16
+ "source_provider",
17
+ "source_dataset",
18
+ "source_resource",
19
+ "source_package_id",
20
+ "source_resource_id",
21
+ "source_url",
22
+ "license_id",
23
+ "retrieved_at"
24
+ ],
25
+ "generated_at": "2026-07-19T04:21:17Z",
26
+ "indicator_count": 1,
27
+ "mode": "indicator_long",
28
+ "repo_id": "electricsheepafrica/africa-nigeria-premium-motor-spirit-petrol-price-watch-006821a8",
29
+ "rows": 116,
30
+ "source": {
31
+ "api_base_url": "https://microdata.nigerianstat.gov.ng/index.php/api/catalog/search",
32
+ "country_iso3": "NGA",
33
+ "country_name": "Nigeria",
34
+ "group_names": "NATIONAL ECONOMY; PMS Report February 2026; PMS_Report_FEBRUARY_2026.zip; 0",
35
+ "license_id": "other-open",
36
+ "license_title": "Public NBS related material",
37
+ "license_url": "https://microdata.nigerianstat.gov.ng/index.php/catalog/157",
38
+ "organization_title": "National Bureau of Statistics, Nigeria",
39
+ "package_id": "NGA-NBS-PMS",
40
+ "package_name": "nga-nbs-pms",
41
+ "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.",
42
+ "package_page_url": "https://microdata.nigerianstat.gov.ng/index.php/catalog/157/related-materials",
43
+ "package_title": "Premium Motor Spirit (Petrol) Price Watch",
44
+ "package_type": "document",
45
+ "portal_title": "National Bureau of Statistics Microdata Catalog",
46
+ "portal_url": "https://microdata.nigerianstat.gov.ng",
47
+ "resource_created": "2025-01-16T08:53:39+00:00",
48
+ "resource_description": "The average retail price paid by consumers for Premium Motor Spirit (Petrol) for February 2026 was ₦1,051.47, indicating a 15.60% decrease compared to the value recorded in Feb ruary 2025 (₦1,245.80). Likewise, comparing the average price value with that of the previ ous month (i.e., January 2026), the average retail price increased by 1.62% from ₦1,034.76. On State profile analysis, Yobe State had the highest average retail price for Premium Motor Spirit (Petrol), at ₦1,134.73. Sokoto and Akwa Ibom States were next, with ₦1,116.81 and ₦1,109.44, respectively. Conversely, Lagos, Oyo and Kaduna States had the lowest average retail prices for Premium Motor Spirit (Petrol), at ₦966.61, ₦973.45, and ₦1000.07, respectively. Lastly, on the Zonal profile, the North East Zone had the highest average retail price of ₦1,084.41, while the South West Zone had the lowest price of ₦1,023.89.",
49
+ "resource_filename": "PMS_Report_FEBRUARY_2026.zip",
50
+ "resource_format": "ZIP",
51
+ "resource_id": "nbs-nada-157-1374",
52
+ "resource_last_modified": "2026-03-25",
53
+ "resource_mimetype": "",
54
+ "resource_name": "PMS Report February 2026",
55
+ "resource_position": "3",
56
+ "resource_url": "https://microdata.nigerianstat.gov.ng/index.php/catalog/157/download/1374",
57
+ "source_catalog_id": "157",
58
+ "source_idno": "NGA-NBS-PMS",
59
+ "source_total_downloads": "1592627",
60
+ "source_total_views": "397266",
61
+ "tag_names": "document; PMS; Document, Report [doc/rep]; Reports"
62
+ },
63
+ "year_max": 2026,
64
+ "year_min": 2025
65
+ }