Upload Guinea/datacard_Digital-Development.md with huggingface_hub
Browse files
Guinea/datacard_Digital-Development.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Datacard for Guinea Digital Development Indicators (1960-2024)
|
| 2 |
+
|
| 3 |
+
This dataset contains a time-series of key digital development indicators for Guinea, 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**: Guinea
|
| 9 |
+
- **Format**: Comma-Separated Values (CSV)
|
| 10 |
+
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
## Data Points (Features)
|
| 14 |
+
|
| 15 |
+
The dataset includes the following digital development indicators, with 'Year' serving as the primary date column:
|
| 16 |
+
|
| 17 |
+
1. `fixed_broadband_subscriptions_per_100_people_`: Fixed broadband subscriptions (per 100 people)
|
| 18 |
+
2. `individuals_using_the_internet_of_population_`: Individuals using the Internet (% of population)
|
| 19 |
+
3. `mobile_cellular_subscriptions_per_100_people_`: Mobile cellular subscriptions (per 100 people)
|
| 20 |
+
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
## Data Preparation & Missing Data Handling
|
| 24 |
+
|
| 25 |
+
The raw data was processed using a Python script to transform it into a clean, structured format. The key steps were:
|
| 26 |
+
|
| 27 |
+
1. **Filtering**: The data was filtered to include only records for 'Guinea'.
|
| 28 |
+
2. **Reshaping**: The original wide-format data (years as columns) was melted into a long format.
|
| 29 |
+
3. **Merging**: Data from all indicator files was merged into a single DataFrame on 'Year'.
|
| 30 |
+
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.
|