Education Survey — Household Social Consumption: Education survey covering participation, expenditure, and out-of-school indicators with Maharashtra state-level tabulations
# Download from https://mospi.gov.in/
import pandas as pd
df = pd.read_csv('nss_75th.csv')
mh = df[df['State'] == 'Maharashtra']
print(f'Households: {len(mh)}')
print(mh.groupby('Sector')['MPCE'].describe())| Field | Type | Description |
|---|---|---|
| household_id | string | Household identifier |
| state | string | State code |
| sector | string | Rural or urban |
| mpce | float | Monthly per capita expenditure |