We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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'
--> 223 record_collinear = record_collinear.append(temp_df, ignore_index = True)
The text was updated successfully, but these errors were encountered:
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
Sorry, something went wrong.
No branches or pull requests
When I try to run the code for collinear features:
--> 223 record_collinear = record_collinear.append(temp_df, ignore_index = True)
'DataFrame' object has no attribute 'append'
The text was updated successfully, but these errors were encountered: