-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DOC: Out-of-date list of sort algorithms #38287
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
Milestone
Comments
Thanks for the report! PR to update is most welcome. |
@jamesmyatt are you ok with me taking this ? |
FullBeardDev
pushed a commit
to FullBeardDev/pandas
that referenced
this issue
Dec 15, 2020
Reference Issues/PRs Fixes: pandas-dev#38287 Implemented changes: Changed the docstring of all the methods using np.sort as it now includes one additional stable algorithm
FullBeardDev
pushed a commit
to FullBeardDev/pandas
that referenced
this issue
Dec 16, 2020
Reference Issues/PRs Fixes: pandas-dev#38287 Implemented changes: Changed the docstring of all the methods using np.sort as it now includes one additional stable algorithm
@DonPablo99 Of course. Thank you. |
FullBeardDev
pushed a commit
to FullBeardDev/pandas
that referenced
this issue
Dec 17, 2020
Reference Issues/PRs Fixes: pandas-dev#38287 Implemented changes: Changed the docstring of all the methods using np.sort as it now includes one additional stable algorithm
FullBeardDev
pushed a commit
to FullBeardDev/pandas
that referenced
this issue
Dec 29, 2020
Reference Issues/PRs Fixes: pandas-dev#38287 Implemented changes: Changed the docstring of all the methods using np.sort as it now includes one additional stable algorithm
FullBeardDev
pushed a commit
to FullBeardDev/pandas
that referenced
this issue
Dec 30, 2020
Reference Issues/PRs Fixes: pandas-dev#38287 Implemented changes: Changed the docstring of all the methods using np.sort as it now includes one additional stable algorithm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Location of the documentation
e.g. https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.sort_values.html, https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.sort_index.html
Documentation problem
List of values for
kind
should be updated to reflect changes in NumPy: https://numpy.org/doc/stable/reference/generated/numpy.sort.htmlSpecifically, since NumPy 1.15.0, the list has been
{‘quicksort’, ‘mergesort’, ‘heapsort’, ‘stable’}
Suggested fix for documentation
Full list of options is provided. Also, the statement that "‘mergesort’ is the only stable algorithm" is now incorrect.
I can do this, when I get time. But I'm more than happy for someone else to do it if they want.
The text was updated successfully, but these errors were encountered: