You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: