Skip to content

abate_trimestral v1.0

Animal slaughter by species, quarter and state (cattle, hogs, poultry).

Sources

Priority Source Description
1 IBGE Slaughter Quarterly Animal Slaughter Survey

Species

bovino, suino, frango

Schema

Column Type Nullable Description
trimestre str Quarter in YYYYQQ format
localidade str State
localidade_cod int IBGE code
especie str bovino, suino or frango
animais_abatidos float64 Number of animals slaughtered (head)
peso_carcacas float64 Total carcass weight (kg)
fonte str Data origin

Primary Key

[trimestre, especie, localidade]

Guarantees

  • Consolidated quarterly data
  • Typical latency: Q+2 months
  • Historical series since 1997

Example

from agrobr import datasets

# Cattle slaughter by state
df = await datasets.abate_trimestral("bovino", trimestre="202303")

# Poultry slaughter in Paraná
df = await datasets.abate_trimestral("frango", trimestre="202303", uf="PR")

# With metadata
df, meta = await datasets.abate_trimestral("bovino", trimestre="202303", return_meta=True)

JSON Schema

Available at agrobr/schemas/abate_trimestral.json.

from agrobr.contracts import get_contract
contract = get_contract("abate_trimestral")
print(contract.to_json())