WillKoehrsen/feature-selector

'DataFrame' object has no attribute 'append'

Opened this issue · 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'

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

pandas-dev/pandas#35407

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