-
-
Notifications
You must be signed in to change notification settings - Fork 18.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
API: make Series.sort/order arguments in the same order #6848
Conversation
cc @unutbu |
any objections here? |
drop unused Series.sort order argument added Series.sort na_position argument to conform with Series.order Series.order default kind is not 'quicksort' to conform with Series.sort (and others), (GH6847)
fine by me |
👍 |
API: make Series.sort/order arguments in the same order
Are |
yes, good point |
fixed in c1440e9 as an aside, maybe we should add an |
And then also in |
I think that is right....seems innocuous enough (famous last words)...will make an issue |
Series.sort
order argumentSeries.sort na_position
argument to conform withSeries.order
Series.order
is nowquicksort
, same asSeries.sort
and numpy defaultcloses #6847