-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
docs(python): Alphabetise methods in Python API reference #18380
Conversation
@@ -19,8 +19,8 @@ This page gives an overview of all public Series methods. | |||
export | |||
list | |||
modify_select |
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.
modify_select
appears in the docs as Manipulation/selection
, so is correctly before miscellaneous
Returns the standard deviation of all the elements in the grouping. | ||
Returns the sample standard deviation of all the elements in the grouping. |
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.
drive by
Any way to add sorting to |
Thanks @henryharbeck |
Good idea - will see if I can do something with a small footprint |
It is evident based on the existing API reference that the methods are intended to be in alphabetical order (and they mostly are).
This does the remainder.
Note that there were a few exceptions where I decided alphabetical order was not better.
strip_chars_end
coming afterstrip_chars_start
being one example. Let me know if you have a difference of opinion.