Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,113 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- india
|
| 7 |
+
- census
|
| 8 |
+
- demographics
|
| 9 |
+
- districts
|
| 10 |
+
- population
|
| 11 |
+
- literacy
|
| 12 |
+
pretty_name: India Census 2011 - District Level
|
| 13 |
+
size_categories:
|
| 14 |
+
- n<1K
|
| 15 |
---
|
| 16 |
+
|
| 17 |
+
# India Census 2011 — District Level
|
| 18 |
+
|
| 19 |
+
Clean, versioned district-level data from India's 2011 Census.
|
| 20 |
+
640 districts. 29 columns. Zero missing values. Ready for pandas.
|
| 21 |
+
|
| 22 |
+
## Quick Start
|
| 23 |
+
|
| 24 |
+
```python
|
| 25 |
+
import pandas as pd
|
| 26 |
+
from huggingface_hub import hf_hub_download
|
| 27 |
+
|
| 28 |
+
path = hf_hub_download(
|
| 29 |
+
repo_id="indiaset/census-2011",
|
| 30 |
+
filename="census_2011_districts_final.parquet",
|
| 31 |
+
repo_type="dataset"
|
| 32 |
+
)
|
| 33 |
+
df = pd.read_parquet(path)
|
| 34 |
+
print(df.shape) # (640, 29)
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## What's In This Dataset
|
| 38 |
+
|
| 39 |
+
One row per district. All 640 districts of India as they existed
|
| 40 |
+
on Census night — midnight of February 28, 2011.
|
| 41 |
+
|
| 42 |
+
| Column | Description |
|
| 43 |
+
|--------|-------------|
|
| 44 |
+
| state_code | Census 2011 state code |
|
| 45 |
+
| state_name | Official state/UT name |
|
| 46 |
+
| district_code | Census 2011 district code |
|
| 47 |
+
| district_name | District name as per Census |
|
| 48 |
+
| lgd_code | LGD permanent district code |
|
| 49 |
+
| district_name_lgd | District name as per LGD |
|
| 50 |
+
| pop_total | Total population |
|
| 51 |
+
| pop_male | Male population |
|
| 52 |
+
| pop_female | Female population |
|
| 53 |
+
| pop_under6_total | Children under 6 years |
|
| 54 |
+
| pop_sc | Scheduled Caste population |
|
| 55 |
+
| pop_st | Scheduled Tribe population |
|
| 56 |
+
| literate_total | Literate persons |
|
| 57 |
+
| literate_male | Literate males |
|
| 58 |
+
| literate_female | Literate females |
|
| 59 |
+
| illiterate_total | Illiterate persons |
|
| 60 |
+
| workers_total | Total workers |
|
| 61 |
+
| workers_male | Male workers |
|
| 62 |
+
| workers_female | Female workers |
|
| 63 |
+
| non_workers_total | Non workers |
|
| 64 |
+
| literacy_rate | Literate / Total × 100 |
|
| 65 |
+
| sex_ratio | Females per 1000 males |
|
| 66 |
+
| workforce_participation | Workers / Total × 100 |
|
| 67 |
+
|
| 68 |
+
## Validation
|
| 69 |
+
|
| 70 |
+
District populations sum to exactly **1,210,854,977** —
|
| 71 |
+
the official Census 2011 total for India. Zero discrepancy.
|
| 72 |
+
|
| 73 |
+
## Key Insights
|
| 74 |
+
|
| 75 |
+
- Most literate district: Pathanamthitta, Kerala — 88.74%
|
| 76 |
+
- Least literate district: Alirajpur, Madhya Pradesh — 28.77%
|
| 77 |
+
- Literacy gap across India: 60 percentage points
|
| 78 |
+
- National sex ratio: 943 females per 1000 males
|
| 79 |
+
|
| 80 |
+
## Known Limitations
|
| 81 |
+
|
| 82 |
+
⚠️ This data reflects 2011 boundaries. Key things to know:
|
| 83 |
+
|
| 84 |
+
- **Telangana does not exist** — it was carved out of Andhra
|
| 85 |
+
Pradesh in 2014. All Telangana districts appear under
|
| 86 |
+
Andhra Pradesh here.
|
| 87 |
+
- **New districts created after 2011 are not present** —
|
| 88 |
+
India had 640 districts in 2011, now has 800+.
|
| 89 |
+
- **Population figures are from 2011** — use for structural
|
| 90 |
+
comparisons, not current headcounts.
|
| 91 |
+
- **Yanam and Mahe** (Puducherry enclaves) LGD codes were
|
| 92 |
+
manually verified and patched — not in the LGD export.
|
| 93 |
+
|
| 94 |
+
## Source & License
|
| 95 |
+
|
| 96 |
+
- **Maintainer:** Ansuman Jaiswal (github.com/iam-ansuman)
|
| 97 |
+
- **Source:** Office of the Registrar General & Census
|
| 98 |
+
Commissioner, India (censusindia.gov.in)
|
| 99 |
+
- **LGD Codes:** Ministry of Panchayati Raj, Government of
|
| 100 |
+
India (lgdirectory.gov.in)
|
| 101 |
+
- **Original license:** GODL-India
|
| 102 |
+
- **This dataset:** CC-BY-4.0
|
| 103 |
+
|
| 104 |
+
If you use this dataset, please cite:
|
| 105 |
+
|
| 106 |
+
Jaiswal, Ansuman. (2026). India Census 2011 - District Level
|
| 107 |
+
[Dataset]. indiaset. Hugging Face.
|
| 108 |
+
https://huggingface.co/datasets/indiaset/census-2011
|
| 109 |
+
|
| 110 |
+
## Cleaning Pipeline
|
| 111 |
+
|
| 112 |
+
Full reproducible pipeline available at:
|
| 113 |
+
github.com/indiaset/census-2011-pipeline
|