'DataFrame' object has no attribute 'append'
Opened this issue · 1 comments
mafaldcosta commented
When I try to run the code for collinear features:
222 # Add to dataframe
--> 223 record_collinear = record_collinear.append(temp_df, ignore_index = True)
'DataFrame' object has no attribute 'append'
vitorpbarbosa7 commented
I suppose the reason is pandas >= 2.0.0 versions deprecated the .append method for dataframes.
If you downgrade to a previous version, it will probably work