Kossisoroyce commited on
Commit
56bfe14
·
verified ·
1 Parent(s): 05b688a

Upload Mauritania/datacard_Water.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. Mauritania/datacard_Water.md +31 -0
Mauritania/datacard_Water.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Datacard for Mauritania Water Indicators (1960-2024)
2
+
3
+ This dataset contains a time-series of key water indicators for Mauritania, spanning from 1960 to 2024. The data has been aggregated from multiple sources, cleaned, and processed into a single, analysis-ready CSV file.
4
+
5
+ The raw data was sourced from **The World Bank** data portal. The original files were provided in Excel (.xls) format.
6
+
7
+ - **Temporal Coverage**: 1960-2024
8
+ - **Geographic Coverage**: Mauritania
9
+ - **Format**: Comma-Separated Values (CSV)
10
+
11
+ ---
12
+
13
+ ## Data Points (Features)
14
+
15
+ The dataset includes the following water indicators, with 'Year' serving as the primary date column:
16
+
17
+ 1. `annual_freshwater_withdrawals_total_of_internal_resources_`: Annual freshwater withdrawals, total (% of internal resources)
18
+ 2. `marine_protected_areas_of_territorial_waters_`: Marine protected areas (% of territorial waters)
19
+ 3. `people_using_at_least_basic_drinking_water_services_of_population_`: People using at least basic drinking water services (% of population)
20
+ 4. `people_with_basic_handwashing_facilities_including_soap_and_water_of_population_`: People with basic handwashing facilities including soap and water (% of population)
21
+
22
+ ---
23
+
24
+ ## Data Preparation & Missing Data Handling
25
+
26
+ The raw data was processed using a Python script to transform it into a clean, structured format. The key steps were:
27
+
28
+ 1. **Filtering**: The data was filtered to include only records for 'Mauritania'.
29
+ 2. **Reshaping**: The original wide-format data (years as columns) was melted into a long format.
30
+ 3. **Merging**: Data from all indicator files was merged into a single DataFrame on 'Year'.
31
+ 4. **Handling Missing Data**: Missing values (`NaN`) were filled using a two-step strategy: linear interpolation followed by a back-fill to handle any remaining gaps at the start of the series.