Monthly facility-level health data from all government health facilities across Maharashtra covering maternal health, immunisation, disease reporting
# Download from https://hmis.mohfw.gov.in/
import pandas as pd
df = pd.read_csv('hmis_data.csv')
mh = df[df['State'] == 'Maharashtra']
print(f'Facilities: {mh["Facility"].nunique()}')
print(mh.groupby('Indicator')['Value'].mean().head())| Field | Type | Description |
|---|---|---|
| facility | string | Health facility name |
| district | string | District name |
| indicator | string | Health indicator name |
| value | float | Indicator value |
| month | string | Reporting month |