Maharashtra — Composite innovation performance ranking covering human capital, knowledge output, business sophistication, and research for Maharashtra
# Download from https://www.niti.gov.in/
import pandas as pd
df = pd.read_csv('innovation_index.csv')
mh = df[df['State'] == 'Maharashtra']
print(mh[['Indicator', 'Score', 'Rank']].head(10))| Field | Type | Description |
|---|---|---|
| state | string | State name |
| indicator | string | Innovation indicator name |
| score | float | Indicator score |
| rank | int | State rank on this indicator |