[WIP] Prepare functions to remember implementing them.

communication
junos 2021-06-08 16:50:07 +02:00
parent de32241d51
commit c96307b430
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
from collections.abc import Collection
import pandas as pd
def read_baseline(paths: Collection) -> pd.DataFrame:
#TODO Read CSV files and concat them.
pass
def preprocess_baseline(df_baseline_from_csv: pd.DataFrame) -> pd.DataFrame:
#TODO Translate columns, calculate age.
pass