Health insurance claims data from the Pradhan Mantri Jan Arogya Yojana and Maharashtra's Mahatma Jyotiba Phule Jan Arogya Yojana
# Download from https://pmjay.gov.in/
import pandas as pd
df = pd.read_csv('pmjay_claims.csv')
print(f'Total claims: {len(df)}')
print(df.groupby('Procedure')['Claims_Count'].sum().sort_values(ascending=False).head())| Field | Type | Description |
|---|---|---|
| district | string | District name in Maharashtra |
| hospital | string | Hospital name |
| procedure | string | Medical procedure name |
| claims_count | int | Number of claims filed |
| amount_sanctioned | float | Total sanctioned amount in Rs |