Electronic National Agriculture Market with 118 Maharashtra mandis integrated, providing real-time commodity arrivals, quality parameters, and trade prices
# Download from https://enam.gov.in/web/dashboard/trade-data
import pandas as pd
df = pd.read_csv('enam_trade.csv')
print(f"Trade records: {len(df)}")
print(df.groupby('Commodity')['Price'].mean().sort_values(ascending=False).head(10))| Field | Type | Description |
|---|---|---|
| mandi | string | e-NAM mandi name |
| commodity | string | Traded commodity name |
| lot_size | float | Lot size in quintals |
| price | float | Trading price in Rs/quintal |
| trade_date | date | Date of trade |