Qa

View or edit on GitHub

This page is synchronized from trase/data/brazil/logistics/abiove/out/qa.ipynb. Last modified on 2026-03-21 22:30 CET by Trase Admin. Please view or edit the original file there; changes should be reflected here after a midnight build (CET time), or manually triggering it with a GitHub action (link).

from trase.tools.aws.aws_helpers_cached import get_pandas_df

# These date were mannualy extracted from JJ pdf reports (e.g. JJHinrichsen2025.pdf)
PATH_2023 = "brazil/logistics/jjhinrichsen/jjhinrichsen_2023.csv"  # mannualy extracted from JJ pdfs
PATH_2024 = "brazil/logistics/jjhinrichsen/jjhinrichsen_2024.csv"  # mannualy extracted from JJ pdfs

capacity_2023 = get_pandas_df(key=PATH_2023)
capacity_2024 = get_pandas_df(PATH_2024)
capacity_2024.dtypes
Company        object
location       object
Department     object
Capacity      float64
Process        object
Seed           object
Remarks        object
dtype: object
capacity_2024.Capacity.sum()
182900.0
capacity_2023.Capacity.sum()
188400.0