Comprehensive annual school-level data on enrolment, infrastructure, teachers, and facilities for all recognised schools in Maharashtra
# Download from https://udiseplus.gov.in/
import pandas as pd
df = pd.read_csv('udise_data.csv')
mh = df[df['State'] == 'Maharashtra']
print(f'Schools: {len(mh)}')
print(mh.groupby('District')['Enrollment'].sum().sort_values(ascending=False).head())| Field | Type | Description |
|---|---|---|
| school_id | string | School unique identifier |
| district | string | District name |
| enrollment | int | Total enrollment |
| teachers | int | Number of teachers |
| infrastructure_score | float | School infrastructure score |