Longitudinal household-level panel data from 4 Maharashtra villages covering income, assets, consumption, and agricultural practices over 30+ years
# Download from http://vdsa.icrisat.org/
import pandas as pd
df = pd.read_csv('vdsa_household.csv')
print(f"Records: {len(df)}")
print(f"Villages: {df['Village_ID'].nunique()}")
print(f"Years: {df['Year'].min()}-{df['Year'].max()}")| Field | Type | Description |
|---|---|---|
| village_id | string | Village identifier |
| household_id | string | Household identifier |
| year | int | Survey year |
| variable | string | Survey variable name |
| value | float | Observed value |