Maharashtra — Quarterly and annual employment and unemployment indicators including LFPR, WPR, and unemployment rates with state-level Maharashtra tabulations
# Download from https://mospi.gov.in/
import pandas as pd
df = pd.read_csv('plfs_data.csv')
mh = df[df['State'] == 'Maharashtra']
print(mh[['Quarter', 'Employment_Rate', 'LFPR']].tail())| Field | Type | Description |
|---|---|---|
| state | string | State name |
| sector | string | Rural or urban |
| employment_rate | float | Employment rate percentage |
| lfpr | float | Labour force participation rate |
| quarter | string | Survey quarter |