interva commited on
Commit
169169d
·
verified ·
1 Parent(s): 0b0e508

Upload dataset folder

Browse files
README.md CHANGED
@@ -15,6 +15,11 @@ tags:
15
  - mauritius
16
  - official-statistics
17
  - open-data
 
 
 
 
 
18
  pretty_name: "Data_Budget Data 2016-2017 - Judiciary | Africa (Mauritius official open data)"
19
  ---
20
 
@@ -30,15 +35,16 @@ pretty_name: "Data_Budget Data 2016-2017 - Judiciary | Africa (Mauritius officia
30
 
31
  ## TL;DR
32
 
33
- This dataset packages one official CSV resource from **Mauritius** as
34
- ML-ready Parquet. The CSV is the provenance boundary; all usable indicators or
35
- tabular columns from the source file stay together in this repo.
36
 
37
  ## About the source
38
 
39
  - **Source:** [Data_Budget Data 2016-2017 - Judiciary](https://data.govmu.org/dataset/databudget-data-2016-2017-judiciary)
40
  - **Publisher:** MDPA
41
  - **Resource:** [Data-_Judiciary-20162017_0.csv](https://data.govmu.org/dataset/970bb7f7-8138-4293-8c0d-ccb888f4bf54/resource/85939184-9e93-4e28-a8ef-34484f6bd3c0/download/data-_judiciary-20162017_0.csv)
 
42
  - **License:** [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
43
  - **Packaging mode:** `indicator_long`
44
 
@@ -48,7 +54,7 @@ tabular columns from the source file stay together in this repo.
48
 
49
  | Country | Rows | First year | Last year | Name |
50
  |---------|-----:|-----------:|----------:|------|
51
- | `MUS` | 264 | 2015 | 2018 | `Mauritius` |
52
 
53
  ## Indicators or Resource Contents
54
 
@@ -60,27 +66,30 @@ tabular columns from the source file stay together in this repo.
60
 
61
  | Column | Type | Description | Example |
62
  |--------|------|-------------|---------|
63
- | `indicator_id` | `object` | Stable indicator identifier. | `data-budget-data-2016-2017-judiciary-item-no-0a9a39c4` |
64
- | `indicator_name` | `object` | Human-readable indicator name. | `Data_Budget Data 2016-2017 - Judiciary - item no` |
65
- | `country_iso3` | `object` | ISO3 country code. | `MUS` |
66
- | `country_name` | `object` | Country name. | `Mauritius` |
67
  | `year` | `Int64` | Observation year. | `2015` |
68
  | `value` | `float64` | Numeric observation value. | `21110.0` |
69
- | `unit` | `object` | Measurement unit, when available. | `source_units_unspecified` |
70
  | `dimension_head` | `string` | Source dimension. | `THE JUDICIARY` |
71
  | `dimension_sub_head` | `string` | Source dimension. | `THE JUDICIARY` |
72
  | `dimension_expense_type` | `string` | Source dimension. | `Reccurrent Expenditure` |
73
  | `dimension_category` | `string` | Source dimension. | `Compensation of Employees` |
74
  | `dimension_sub_category` | `string` | Source dimension. | `Personal Emoluments` |
75
  | `dimension_financial_status` | `string` | Source dimension. | `Estimates` |
76
- | `source_provider` | `object` | Publishing organization. | `MDPA` |
77
- | `source_dataset` | `object` | Source package title. | `Data_Budget Data 2016-2017 - Judiciary` |
78
- | `source_resource` | `object` | Source resource title. | `Data-_Judiciary-20162017_0.csv` |
79
- | `source_package_id` | `object` | CKAN package UUID. | `970bb7f7-8138-4293-8c0d-ccb888f4bf54` |
80
- | `source_resource_id` | `object` | CKAN resource UUID. | `85939184-9e93-4e28-a8ef-34484f6bd3c0` |
81
- | `source_url` | `object` | Original CSV URL. | `https://data.govmu.org/dataset/970bb7f7-8138-4293-8c0d-ccb888f4bf54/reso` |
82
- | `license_id` | `object` | Source license identifier. | `CC-BY-SA-4.0` |
83
- | `retrieved_at` | `object` | UTC retrieval timestamp. | `2026-07-16T19:23:24Z` |
 
 
 
84
 
85
  ## Usage
86
 
@@ -95,7 +104,7 @@ print(df.head())
95
  ### Filter to one country
96
 
97
  ```python
98
- sample_country = df[df["country_iso3"] == "MUS"]
99
  ```
100
 
101
  ### Work with indicators
@@ -138,5 +147,5 @@ Browse the full collection: [huggingface.co/electricsheepafrica](https://hugging
138
 
139
  ---
140
 
141
- Provenance: ingested 2026-07-16 via the Electric Sheep pipeline. Source URL:
142
  https://data.govmu.org/dataset/970bb7f7-8138-4293-8c0d-ccb888f4bf54/resource/85939184-9e93-4e28-a8ef-34484f6bd3c0/download/data-_judiciary-20162017_0.csv
 
15
  - mauritius
16
  - official-statistics
17
  - open-data
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: data/train-00000-of-00001.parquet
23
  pretty_name: "Data_Budget Data 2016-2017 - Judiciary | Africa (Mauritius official open data)"
24
  ---
25
 
 
35
 
36
  ## TL;DR
37
 
38
+ This dataset packages one official `CSV` resource from **Mauritius** as
39
+ ML-ready Parquet. The source file is the provenance boundary; all usable
40
+ indicators or tabular columns from the resource stay together in this repo.
41
 
42
  ## About the source
43
 
44
  - **Source:** [Data_Budget Data 2016-2017 - Judiciary](https://data.govmu.org/dataset/databudget-data-2016-2017-judiciary)
45
  - **Publisher:** MDPA
46
  - **Resource:** [Data-_Judiciary-20162017_0.csv](https://data.govmu.org/dataset/970bb7f7-8138-4293-8c0d-ccb888f4bf54/resource/85939184-9e93-4e28-a8ef-34484f6bd3c0/download/data-_judiciary-20162017_0.csv)
47
+ - **Format:** `CSV`
48
  - **License:** [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
49
  - **Packaging mode:** `indicator_long`
50
 
 
54
 
55
  | Country | Rows | First year | Last year | Name |
56
  |---------|-----:|-----------:|----------:|------|
57
+ | `MU` | 264 | 2015 | 2018 | `Mauritius` |
58
 
59
  ## Indicators or Resource Contents
60
 
 
66
 
67
  | Column | Type | Description | Example |
68
  |--------|------|-------------|---------|
69
+ | `indicator_id` | `string` | Stable indicator identifier. | `data-budget-data-2016-2017-judiciary-item-no-0a9a39c4` |
70
+ | `indicator_name` | `string` | Human-readable indicator name. | `Data_Budget Data 2016-2017 - Judiciary - item no` |
71
+ | `country_iso3` | `string` | ISO3 country code. | `MU` |
72
+ | `country_name` | `string` | Country name. | `Mauritius` |
73
  | `year` | `Int64` | Observation year. | `2015` |
74
  | `value` | `float64` | Numeric observation value. | `21110.0` |
75
+ | `unit` | `string` | Measurement unit, when available. | `source_units_unspecified` |
76
  | `dimension_head` | `string` | Source dimension. | `THE JUDICIARY` |
77
  | `dimension_sub_head` | `string` | Source dimension. | `THE JUDICIARY` |
78
  | `dimension_expense_type` | `string` | Source dimension. | `Reccurrent Expenditure` |
79
  | `dimension_category` | `string` | Source dimension. | `Compensation of Employees` |
80
  | `dimension_sub_category` | `string` | Source dimension. | `Personal Emoluments` |
81
  | `dimension_financial_status` | `string` | Source dimension. | `Estimates` |
82
+ | `source_period_start_year` | `Int64` | First year inferred from source resource metadata. | `2016` |
83
+ | `source_period_end_year` | `Int64` | Last year inferred from source resource metadata. | `2017` |
84
+ | `source_period_label` | `category` | Human-readable period inferred from source resource metadata. | `2016-2017` |
85
+ | `source_provider` | `category` | Publishing organization. | `MDPA` |
86
+ | `source_dataset` | `category` | Source package title. | `Data_Budget Data 2016-2017 - Judiciary` |
87
+ | `source_resource` | `category` | Source resource title. | `Data-_Judiciary-20162017_0.csv` |
88
+ | `source_package_id` | `category` | CKAN package UUID. | `970bb7f7-8138-4293-8c0d-ccb888f4bf54` |
89
+ | `source_resource_id` | `category` | CKAN resource UUID. | `85939184-9e93-4e28-a8ef-34484f6bd3c0` |
90
+ | `source_url` | `category` | Original source resource URL. | `https://data.govmu.org/dataset/970bb7f7-8138-4293-8c0d-ccb888f4bf54/reso` |
91
+ | `license_id` | `category` | Source license identifier. | `CC-BY-SA-4.0` |
92
+ | `retrieved_at` | `category` | UTC retrieval timestamp. | `2026-08-08T16:26:20Z` |
93
 
94
  ## Usage
95
 
 
104
  ### Filter to one country
105
 
106
  ```python
107
+ sample_country = df[df["country_iso3"] == "MU"]
108
  ```
109
 
110
  ### Work with indicators
 
147
 
148
  ---
149
 
150
+ Provenance: ingested 2026-08-08 via the Electric Sheep pipeline. Source URL:
151
  https://data.govmu.org/dataset/970bb7f7-8138-4293-8c0d-ccb888f4bf54/resource/85939184-9e93-4e28-a8ef-34484f6bd3c0/download/data-_judiciary-20162017_0.csv
data/train-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:22df570e8d343dacf424760dee1434383bf50cbc8f3b4840f9025ebe467ae2ce
3
- size 16867
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6a9dedf9759fcaa8a8ace7f71490d4a57bcdcaa17b5eacca0afc225988fcc21
3
+ size 20130
metadata/source_snapshot.json CHANGED
@@ -13,6 +13,9 @@
13
  "dimension_category",
14
  "dimension_sub_category",
15
  "dimension_financial_status",
 
 
 
16
  "source_provider",
17
  "source_dataset",
18
  "source_resource",
@@ -22,14 +25,14 @@
22
  "license_id",
23
  "retrieved_at"
24
  ],
25
- "generated_at": "2026-07-16T19:40:57Z",
26
  "indicator_count": 3,
27
  "mode": "indicator_long",
28
  "repo_id": "electricsheepafrica/africa-mauritius-data-budget-data-2016-2017-judiciary-2a4ede9a",
29
  "rows": 264,
30
  "source": {
31
  "api_base_url": "https://data.govmu.org",
32
- "country_iso3": "MUS",
33
  "country_name": "Mauritius",
34
  "group_names": "finance-and-trade",
35
  "license_id": "CC-BY-SA-4.0",
@@ -64,7 +67,7 @@
64
  "resource_size": "11128",
65
  "resource_state": "active",
66
  "resource_url": "https://data.govmu.org/dataset/970bb7f7-8138-4293-8c0d-ccb888f4bf54/resource/85939184-9e93-4e28-a8ef-34484f6bd3c0/download/data-_judiciary-20162017_0.csv",
67
- "retrieved_at": "2026-07-16T17:57:00Z",
68
  "tag_names": "Judiciary; budget data; budget data judiciary 2016-2017; estimates; recurrent expenditure"
69
  },
70
  "year_max": 2018,
 
13
  "dimension_category",
14
  "dimension_sub_category",
15
  "dimension_financial_status",
16
+ "source_period_start_year",
17
+ "source_period_end_year",
18
+ "source_period_label",
19
  "source_provider",
20
  "source_dataset",
21
  "source_resource",
 
25
  "license_id",
26
  "retrieved_at"
27
  ],
28
+ "generated_at": "2026-08-08T16:46:07Z",
29
  "indicator_count": 3,
30
  "mode": "indicator_long",
31
  "repo_id": "electricsheepafrica/africa-mauritius-data-budget-data-2016-2017-judiciary-2a4ede9a",
32
  "rows": 264,
33
  "source": {
34
  "api_base_url": "https://data.govmu.org",
35
+ "country_iso3": "MU",
36
  "country_name": "Mauritius",
37
  "group_names": "finance-and-trade",
38
  "license_id": "CC-BY-SA-4.0",
 
67
  "resource_size": "11128",
68
  "resource_state": "active",
69
  "resource_url": "https://data.govmu.org/dataset/970bb7f7-8138-4293-8c0d-ccb888f4bf54/resource/85939184-9e93-4e28-a8ef-34484f6bd3c0/download/data-_judiciary-20162017_0.csv",
70
+ "retrieved_at": "2026-08-08T16:23:36Z",
71
  "tag_names": "Judiciary; budget data; budget data judiciary 2016-2017; estimates; recurrent expenditure"
72
  },
73
  "year_max": 2018,