-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
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
Pandas append() method depreciated, replace all occurrences with concat() #126
Comments
Do you have examples from the code where this syntax is still used? I fixed a number of them in various places as part of the 2.1 release. |
If you search in a recent CI run on I tried to use PyCharm to automatically find instances of If you take this run for example, there is one in:
and one in
These might be the only ones, there might be more. |
replaces DataFrame.append with pd.concat. See #126
I think all cases are gone, so this issue can be closed. Thanks! |
great, thanks for checking. |
Using
DataFrame.append()
is depreciated with Pandas 1.4. All occurrences should be replaced withpandas.concat()
to ensure compatibility with future Pandas version.See pandas-dev/pandas#35407 for their motivation why they depreciated it.
The text was updated successfully, but these errors were encountered: