-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DOC: Change warning for sort behavior in concat #37948
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should either add a versionchanged attribute, for when this behavior changed or remove the warning completly.
is this for the join behavior not to sort? I am pretty sure that is in the doc-string. where are you not seeing it?
doc/source/user_guide/merging.rst
Outdated
(columns in this case). In a future version of pandas, the default will | ||
be to not sort. We specified ``sort=False`` to opt in to the new | ||
behavior now. | ||
.. versionchanged:::::: 1.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.. versionchanged:::::: 1.0.0 | |
.. versionchanged:: 1.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed it
doc/source/user_guide/merging.rst
Outdated
@@ -206,10 +206,9 @@ behavior: | |||
|
|||
.. warning:: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the warning can be removed, as it is not that important any more (now we are past 1.0)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, thx. Is gone
great thanks |
We should either add a
versionchanged
attribute, for when this behavior changed or remove the warning completly. Additionally I removed thesort=False
input for the function, because this is no longer necessary.