Aadhaar Enrolment is an initiative by the India Government to register their citizens. As India has over a billion people, keeping track of residents is a major problem.
In this project we're going to create a python script that can perform queries on the Aadhaar Enrolment data set, such as:
- Query residents By State
- Query residents by District
- Query residents by Gender
You'll need to install:
aadhaar_data.csv- Aadhaar Data Set
aadhaar-analysis.py- Python script with functions to easily sort and filter the Aadhaar data.
describe(aadhaar_data)- Describes the Data Setselect_first_50(aadhaar_data)- Gives us a sample of 50 id's understand the data betterselect_state(aadhaar_data)- A function that will allow us to query by stateselect_district(aadhaar_data)- A function that will allow us to query by districtselect_gender(aadhaar_data)- A function that will allow us to query by gender