Byron Murillo
12/05/2022, 4:14 PMrex
12/05/2022, 4:20 PM@solid
?Byron Murillo
12/05/2022, 4:26 PMdef create_dataset(path: str) -> pd.DataFrame:
"""
Creates a Pandas DataFrame from a file retrieved from specified path
:param path: of the CSV file to use to create the DataFrame
:return: Pandas DataFrame dataset from CSV file
"""
return pd.read_csv(path)
I have to use the @op decorator?rex
12/05/2022, 4:27 PM