feature-selector icon indicating copy to clipboard operation
feature-selector copied to clipboard

'DataFrame' object has no attribute 'append'

Open mafaldcosta opened this issue 1 year ago • 1 comments

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'

mafaldcosta avatar May 25 '23 20:05 mafaldcosta

I suppose the reason is pandas >= 2.0.0 versions deprecated the .append method for dataframes.

https://github.com/pandas-dev/pandas/issues/35407

If you downgrade to a previous version, it will probably work

vitorpbarbosa7 avatar May 25 '23 20:05 vitorpbarbosa7