India Subnational — Comprehensive disease burden estimates (292 causes, 88 risk factors) for Maharashtra from 1990 to present via the India State-Level Disease Burden Initiative
# Download from https://vizhub.healthdata.org/gbd-results/
import pandas as pd
df = pd.read_csv('gbd_results.csv')
india = df[df['Location'] == 'India']
print(india.groupby('Cause')['DALYs'].sum().sort_values(ascending=False).head(10))| Field | Type | Description |
|---|---|---|
| location | string | Location name (country, state, or region) |
| cause | string | Disease or injury cause |
| dalys | float | Disability-adjusted life years |
| year | int | Data year |