this entry collects the solution files i have for reshape data concatenate. i may expand it with a fuller write-up later, but the implementation files are already here.
available solution files
- Python
reshape-data-concatenate/solution.py
notes and solution files for reshape data concatenate.
this entry collects the solution files i have for reshape data concatenate. i may expand it with a fuller write-up later, but the implementation files are already here.
reshape-data-concatenate/solution.pyimport pandas as pd
def concatenateTables(df1: pd.DataFrame, df2: pd.DataFrame) -> pd.DataFrame:
return pd.concat([df1,df2])