Maharashtra — Comprehensive health statistics including infrastructure, human resources, disease burden, and vital statistics for Maharashtra
# Download from https://cbhidghs.nic.in/
import pandas as pd
df = pd.read_csv('nhp_data.csv')
mh = df[df['State'] == 'Maharashtra']
print(mh[['Indicator', 'Value']].head(10))| Field | Type | Description |
|---|---|---|
| indicator | string | Health indicator name |
| state | string | State name |
| value | float | Indicator value |
| year | int | Data year |