leite_industrial v1.0¶
Quarterly milk acquisition and processing by state.
Sources¶
| Priority | Source | Description |
|---|---|---|
| 1 | IBGE Milk | Quarterly Milk Survey |
Products¶
leite
Schema¶
| Column | Type | Nullable | Description |
|---|---|---|---|
trimestre |
str | ❌ | Quarter YYYYQQ |
localidade |
str | ✅ | State |
localidade_cod |
int | ✅ | IBGE code |
leite_adquirido |
float64 | ✅ | Raw milk acquired (thousand liters) |
leite_industrializado |
float64 | ✅ | Raw milk processed (thousand liters) |
preco_medio |
float64 | ✅ | Average price paid to producer (BRL/liter) |
fonte |
str | ❌ | Data origin |
Primary Key¶
[trimestre, localidade]
Guarantees¶
- Quarterly data with 3 variables in wide format
- Typical latency: Q+2 months
- Historical series since 1997
Example¶
from agrobr import datasets
# Quarterly milk by state
df = await datasets.leite_industrial(trimestre="202303")
# Filter by state
df = await datasets.leite_industrial(trimestre="202303", uf="MG")
# With metadata
df, meta = await datasets.leite_industrial(trimestre="202303", return_meta=True)
JSON Schema¶
Available at agrobr/schemas/leite_industrial.json.