electricsheepafrica/africa-somalia-price-of-water
收藏资源简介:
--- annotations_creators: - no-annotation language_creators: - found language: - en license: cc-by-4.0 multilinguality: - monolingual size_categories: - 10K<n<100K source_datasets: - original task_categories: - tabular-regression - other task_ids: [] tags: - africa - humanitarian - hdx - electric-sheep-africa - indicators - water-sanitation-and-hygiene-wash - som pretty_name: "Somalia - Price of Water" dataset_info: splits: - name: train num_examples: 8524 - name: test num_examples: 2131 --- # Somalia - Price of Water **Publisher:** HDX · **Source:** [HDX](https://data.humdata.org/dataset/somalia-price-of-water) · **License:** `cc-by` · **Updated:** 2025-05-05 --- ## Abstract Market monitoring, data on price of water from 2011 to 2022 in Somalia Each row in this dataset represents subnational administrative unit observations. Temporal coverage is indicated by the `month` column(s). Geographic scope: **SOM**. *Curated into ML-ready Parquet format by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica).* --- ## Dataset Characteristics | | | |---|---| | **Domain** | Market and price monitoring | | **Unit of observation** | Subnational administrative unit observations | | **Rows (total)** | 10,656 | | **Columns** | 6 (1 numeric, 4 categorical, 1 datetime) | | **Train split** | 8,524 rows | | **Test split** | 2,131 rows | | **Geographic scope** | SOM | | **Publisher** | HDX | | **HDX last updated** | 2025-05-05 | --- ## Variables **Geographic** — `region` (Lower Shabelle, Gedo, Bari), `district` (Borama, Qansax Dheere, Buur Hakaba). **Temporal** — `month`. **Outcome / Measurement** — `water_price` (range 1000.0–530000.0). **Identifier / Metadata** — `esa_source` (HDX), `esa_processed` (2026-04-11). --- ## Quick Start ```python from datasets import load_dataset ds = load_dataset("electricsheepafrica/africa-somalia-price-of-water") train = ds["train"].to_pandas() test = ds["test"].to_pandas() print(train.shape) train.head() ``` --- ## Schema | Column | Type | Null % | Range / Sample Values | |---|---|---|---| | `region` | object | 0.0% | Lower Shabelle, Gedo, Bari | | `district` | object | 0.0% | Borama, Qansax Dheere, Buur Hakaba | | `month` | datetime64[ns] | 0.0% | | | `water_price` | float64 | 39.0% | 1000.0 – 530000.0 (mean 23926.8659) | | `esa_source` | object | 0.0% | HDX | | `esa_processed` | object | 0.0% | 2026-04-11 | --- ## Numeric Summary | Column | Min | Max | Mean | Median | |---|---|---|---|---| | `water_price` | 1000.0 | 530000.0 | 23926.8659 | 20000.0 | --- ## Curation Raw data was downloaded from HDX via the CKAN API and converted to Parquet. Column names were lowercased and standardised to snake_case. Common missing-value markers (`N/A`, `null`, `none`, `-`, `unknown`, `no data`, `#N/A`) were unified to `NaN`. 1 column(s) were cast from string to numeric or datetime based on parse-success rate (>85% threshold). The dataset was split 80/20 into train and test partitions using a fixed random seed (42) and saved as Snappy-compressed Parquet. --- ## Limitations - Data originates from HDX and has not been independently validated by ESA. - Automated cleaning cannot correct for misreported values, definitional inconsistencies, or sampling bias in the original collection. - The following columns have >20% missing values and should be treated with caution in modelling: `water_price`. - Refer to the [original HDX dataset page](https://data.humdata.org/dataset/somalia-price-of-water) for the publisher's own methodology notes and caveats. --- ## Citation ```bibtex @dataset{hdx_africa_somalia_price_of_water, title = {Somalia - Price of Water}, author = {HDX}, year = {2025}, url = {https://data.humdata.org/dataset/somalia-price-of-water}, note = {Repackaged for machine learning by Electric Sheep Africa (https://huggingface.co/electricsheepafrica)} } ``` --- *[Electric Sheep Africa](https://huggingface.co/electricsheepafrica) — Africa's ML dataset infrastructure. Lagos, Nigeria.*




