Maharashtra — Factory-level data on manufacturing output, employment, capital investment, and value added from registered factories in Maharashtra
# Download from https://mospi.gov.in/
import pandas as pd
df = pd.read_csv('asi_data.csv')
mh = df[df['State'] == 'Maharashtra']
print(f'Industries: {mh["Industry_Code"].nunique()}')
print(mh.groupby('Industry_Code')['Output_Lakh'].sum().sort_values(ascending=False).head())| Field | Type | Description |
|---|---|---|
| state | string | State name |
| industry_code | string | NIC industry classification code |
| output_lakh | float | Total output in lakhs |
| workers | int | Number of workers |
| year | int | Survey year |