--- license: cc-by-4.0 language: - en task_categories: - tabular-regression - time-series-forecasting multilinguality: multilingual size_categories: - 1K` | Source column from the original resource. | `2019-2023` | | `source_provider` | `dictionary` | Publishing organization. | `International Organization for Migration (IOM)` | | `source_dataset` | `dictionary` | Source dataset or package title. | `South Sudan - Village Assessment - Education Facilities - [IOM-DTM]` | | `source_resource` | `dictionary` | Source resource title, table name, or file name. | `DTM South Sudan Village Assessment Education Facilities Aug19 to Mar20` | | `source_package_id` | `dictionary` | Source package identifier. | `de0a7adc-5ef1-410a-a532-31b34ba45b07` | | `source_resource_id` | `dictionary` | Source resource identifier. | `87719cd8-d8f7-4287-b634-4f767259f9b3` | | `source_url` | `dictionary` | Original source URL or download URL. | `https://data.humdata.org/dataset/de0a7adc-5ef1-410a-a532-31b34ba45b07...` | | `license_id` | `dictionary` | Source license identifier. | `cc-by` | | `retrieved_at` | `dictionary` | UTC source retrieval timestamp from the Electric Sheep Africa pipeline. | `2026-08-10T18:18:23Z` | ## Usage ```python from datasets import load_dataset ds = load_dataset("electricsheepafrica/africa-south-sudan-south-sudan-village-assessment-education-facilities-iom-dt-9857ee14") df = ds["train"].to_pandas() print(df.head()) ``` ### Inspect Columns ```python print(df.info()) print(df.head()) ``` ### Filter By Geography ```python if "country_iso3" in df.columns: sample = df[df["country_iso3"] == "SSD"] ``` ### Time-Series Pattern ```python if "value" in df.columns and "year" in df.columns: trend = df.sort_values("year") ``` ### Pivot For Analysis ```python if {"indicator_id", "year", "value"}.issubset(df.columns): matrix = df.pivot_table(index="year", columns="indicator_id", values="value") print(matrix.tail()) ``` ## Data Quality Notes - Canonical time field: `year`. - Missing values are preserved rather than silently imputed. - Column names are standardized for machine use; source meanings are preserved where known. - Always confirm source methodology, units, and collection definitions before policy, production, or redistribution-sensitive use. ## Source And Provenance - **Source:** [International Organization for Migration (IOM)](https://data.humdata.org/dataset/south-sudan-village-assessment-education-facilities-iom-dtm) - **Publisher:** International Organization for Migration (IOM) - **Portal:** [https://data.humdata.org](https://data.humdata.org) - **Resource:** [DTM South Sudan Village Assessment Education Facilities Aug19 to Mar20](https://data.humdata.org/dataset/de0a7adc-5ef1-410a-a532-31b34ba45b07/resource/87719cd8-d8f7-4287-b634-4f767259f9b3/download/dtm-south-sudan-village-assessment-education-facilities-aug19-to-mar20.xlsx) - **License:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) - **Retrieved/generated:** `2026-08-10T19:54:00Z` - **Hugging Face repo:** [electricsheepafrica/africa-south-sudan-south-sudan-village-assessment-education-facilities-iom-dt-9857ee14](https://huggingface.co/datasets/electricsheepafrica/africa-south-sudan-south-sudan-village-assessment-education-facilities-iom-dt-9857ee14) ## Transformations Applied - Converted the source table to Parquet for efficient analytics and ML workflows. - Added or preserved source provenance columns where available. - Standardized README metadata, dataset loading configuration, schema documentation, and citation format. - Preserved source-reported values without analytical imputation. ## Suggested Analyses - Compare education indicators by geography - Track participation or completion trends - Join with population and poverty indicators - Build time-series views and period-over-period comparisons - Pivot to geography x period or indicator x period matrices - Check missingness before modeling - Use `country_iso3` as the safest geography join key when present ## Citation ```bibtex @misc{electric_sheep_africa_africa_south_sudan_south_sudan_village_assessment_education_facilities_iom_dt_98_2020, title = {South Sudan Village Assessment Education Facilities Iom Dt | Africa (International Organization for Migration (IOM))}, author = {International Organization for Migration (IOM)}, year = {2020}, url = {https://data.humdata.org/dataset/south-sudan-village-assessment-education-facilities-iom-dtm}, publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-south-sudan-south-sudan-village-assessment-education-facilities-iom-dt-9857ee14}} } ``` ## License Released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/). Original data is published by International Organization for Migration (IOM). Electric Sheep Africa engineering standardizes the data for discovery, loading, and analysis on Hugging Face. Cite both the original source and this ML-ready dataset when used. ## About Electric Sheep Africa Electric Sheep Africa publishes ML-ready African public datasets on Hugging Face. --- Provenance: README standardized 2026-08-12 by the Electric Sheep Africa README system. Source URL: https://data.humdata.org/dataset/south-sudan-village-assessment-education-facilities-iom-dtm