Describe the bug
The bw.load_csv function fails to load csvs from a folder, as the pandas "df.append()" function has been removed in pandas 2.0+. This should be replaced with concat.
To Reproduce
df = bw.load_csv(folder_path_containing_csvs)
AttributeError: 'DataFrame' object has no attribute 'append'
Expected behavior
bw.load_csv() should load all the csv files from the folder and return them as a single DataFrame
Describe the bug The bw.load_csv function fails to load csvs from a folder, as the pandas "df.append()" function has been removed in pandas 2.0+. This should be replaced with concat.
To Reproduce df = bw.load_csv(folder_path_containing_csvs) AttributeError: 'DataFrame' object has no attribute 'append'
Expected behavior bw.load_csv() should load all the csv files from the folder and return them as a single DataFrame