-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
TST: Additional tests for concat(sort) argument #20909
Comments
Also this comment on a refactor to simplify #20613 (comment) |
One case where this warning pops up from the pandas internals is the following example in the docs (http://pandas-docs.github.io/pandas-docs-travis/basics.html#mixed-dtypes):
|
Thanks. Pushing a test / fix now. |
There are some other warnings as well in the doc build, but it might be most of those are OK with a |
So I think the other warnings are OK, it's mainly from concatting two dataframes with eg columns "A B C D" and "C D E F", where sort=True or sort=False does not matter for the actual result (both give the same). |
I think we've enforced this deprecation, so considering this closed. |
Followup to #20613
Ideally, we would specify this everywhere we use concat internally. In many contexts, it will be irrelevant since things should be already sorted & aligned.
Need to determine the old behavior, and then match that.
The text was updated successfully, but these errors were encountered: