Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,68 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: gpl
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: gpl
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- finance
|
| 7 |
+
- companies
|
| 8 |
+
- stock-market
|
| 9 |
+
size_categories:
|
| 10 |
+
- 1K<n<10K
|
| 11 |
+
---
|
| 12 |
+
# Africa Listed Domestic Companies, Total Dataset
|
| 13 |
+
|
| 14 |
+
## Overview
|
| 15 |
+
This dataset contains listed domestic companies, total data for African countries from the World Bank.
|
| 16 |
+
|
| 17 |
+
## Data Details
|
| 18 |
+
- **Indicator Code**: CM.MKT.LDOM.NO
|
| 19 |
+
- **Description**: Listed Domestic Companies, Total
|
| 20 |
+
- **Geographic Coverage**: 17 African countries
|
| 21 |
+
- **Time Period**: 1975-2024
|
| 22 |
+
- **Data Points**: 400 observations
|
| 23 |
+
- **Coverage**: 11.40% of possible country-year combinations
|
| 24 |
+
|
| 25 |
+
## File Formats
|
| 26 |
+
|
| 27 |
+
### Main Dataset (`cm_mkt_ldom_no_africa.csv`)
|
| 28 |
+
- **Rows**: 54 countries
|
| 29 |
+
- **Columns**: 65 years (1960-2024)
|
| 30 |
+
- **Structure**: Countries as rows, years as columns
|
| 31 |
+
- **Missing Value Treatment**: Interpolation → Forward Fill → Backward Fill
|
| 32 |
+
- **Use Case**: Cross-sectional analysis, heatmaps, correlation analysis
|
| 33 |
+
|
| 34 |
+
## Data Quality
|
| 35 |
+
|
| 36 |
+
### Coverage Statistics
|
| 37 |
+
- **Total Observations**: 400
|
| 38 |
+
- **Coverage Rate**: 11.40%
|
| 39 |
+
- **Earliest Data**: 1975
|
| 40 |
+
- **Latest Data**: 2024
|
| 41 |
+
|
| 42 |
+
### Countries with No Data
|
| 43 |
+
37 countries have no observations:
|
| 44 |
+
Angola, Burundi, Benin, Burkina Faso, Central African Republic, Cameroon, Congo, Dem. Rep., Congo, Rep., Comoros, Cabo Verde, Djibouti, Algeria, Eritrea, Ethiopia, Gabon, Guinea, Gambia, The, Guinea-Bissau, Equatorial Guinea, Liberia, Libya, Lesotho, Madagascar, Mali, Mozambique, Mauritania, Malawi, Niger, Sudan, Senegal, Sierra Leone, Somalia, South Sudan, Sao Tome and Principe, Chad, Togo, Uganda
|
| 45 |
+
|
| 46 |
+
## Usage Examples
|
| 47 |
+
|
| 48 |
+
### Python
|
| 49 |
+
```python
|
| 50 |
+
import pandas as pd
|
| 51 |
+
|
| 52 |
+
# Load main dataset
|
| 53 |
+
df = pd.read_csv('cm_mkt_ldom_no_africa.csv', index_col=[0, 1])
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
### R
|
| 57 |
+
```r
|
| 58 |
+
# Load main dataset
|
| 59 |
+
df <- read.csv('cm_mkt_ldom_no_africa.csv', row.names=c(1,2))
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
## Source
|
| 63 |
+
World Bank Open Data - Listed Domestic Companies, Total
|
| 64 |
+
- **Original File**: API_CM.MKT.LDOM.NO_DS2_en_excel_v2_20738.xls
|
| 65 |
+
- **Processed**: 2025-08-18
|
| 66 |
+
|
| 67 |
+
## License
|
| 68 |
+
This dataset is derived from World Bank Open Data and is available under the Creative Commons Attribution 4.0 International License.
|