You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The sort argument was added in #53298 because of #15105. Now that users can get the unsorted result, they can use sort=False and call .sort_index after unstacking if they wish to have sorted columns.
The text was updated successfully, but these errors were encountered:
Or it's the default of True that you want to change to False eventually?
Yes - the goal is to make sort=False the only behavior. So we would deprecate both not specifying sort and specifying sort=True. Then in 3.0, sort would only be able to be False, and we would deprecate the argument entirely.
The
sort
argument was added in #53298 because of #15105. Now that users can get the unsorted result, they can usesort=False
and call.sort_index
after unstacking if they wish to have sorted columns.The text was updated successfully, but these errors were encountered: