17 Nov 2024PythonUnknown

Reshape Data Concatenate

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.

available solution files

  • Python reshape-data-concatenate/solution.py

Solution files

Pythonreshape-data-concatenate/solution.py
import pandas as pd

def concatenateTables(df1: pd.DataFrame, df2: pd.DataFrame) -> pd.DataFrame:
    return pd.concat([df1,df2])