Kossisoroyce commited on
Commit
e65671d
·
verified ·
1 Parent(s): accefbb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -3
README.md CHANGED
@@ -1,3 +1,67 @@
1
- ---
2
- license: gpl
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gpl
3
+ language:
4
+ - en
5
+ tags:
6
+ - climate
7
+ - biology
8
+ - Agriculture
9
+ size_categories:
10
+ - 1K<n<10K
11
+ ---
12
+ # Africa Arable land (hectares per person) Dataset
13
+
14
+ ## Overview
15
+ This dataset contains arable land (hectares per person) data for African countries from the World Bank.
16
+
17
+ ## Data Details
18
+ - **Indicator Code**: AG.LND.ARBL.HA.PC
19
+ - **Description**: Arable land (hectares per person)
20
+ - **Geographic Coverage**: 54 African countries
21
+ - **Time Period**: 1961-2021
22
+ - **Data Points**: 3,211 observations
23
+ - **Coverage**: 91.48% of possible country-year combinations
24
+
25
+ ## File Formats
26
+
27
+ ### Main Dataset (`ag_lnd_arbl_ha_pc_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**: 3,211
38
+ - **Possible Observations**: 3,510
39
+ - **Coverage Rate**: 91.48%
40
+
41
+ ### Countries with No Data
42
+ 0 countries have no observations:
43
+ None
44
+
45
+ ## Usage Examples
46
+
47
+ ### Python
48
+ ```python
49
+ import pandas as pd
50
+
51
+ # Load main dataset
52
+ df = pd.read_csv('ag_lnd_arbl_ha_pc_africa.csv', index_col=[0, 1])
53
+ ```
54
+
55
+ ### R
56
+ ```r
57
+ # Load main dataset
58
+ df <- read.csv('ag_lnd_arbl_ha_pc_africa.csv', row.names=c(1,2))
59
+ ```
60
+
61
+ ## Source
62
+ World Bank Open Data - Arable land (hectares per person)
63
+ - **Original File**: API_AG.LND.ARBL.HA.PC_DS2_en_excel_v2_20483.xls
64
+ - **Processed**: 2025-08-24
65
+
66
+ ## License
67
+ This dataset is derived from World Bank Open Data and is available under the Creative Commons Attribution 4.0 International License.