2021-06-08 16:50:07 +02:00
|
|
|
from collections.abc import Collection
|
|
|
|
|
|
|
|
import pandas as pd
|
|
|
|
|
2021-06-11 14:50:14 +02:00
|
|
|
|
2021-06-08 16:50:07 +02:00
|
|
|
def read_baseline(paths: Collection) -> pd.DataFrame:
|
2021-06-11 14:50:14 +02:00
|
|
|
# TODO Read CSV files and concat them.
|
2021-06-08 16:50:07 +02:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def preprocess_baseline(df_baseline_from_csv: pd.DataFrame) -> pd.DataFrame:
|
2021-06-11 14:50:14 +02:00
|
|
|
# TODO Translate columns, calculate age.
|
2021-06-08 16:50:07 +02:00
|
|
|
pass
|