[WIP] Prepare functions to remember implementing them.
parent
de32241d51
commit
c96307b430
|
@ -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
|
Loading…
Reference in New Issue