-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
BUG: Fix #61221: Exception with unstack(sort=False) and NA in index. #61226
base: main
Are you sure you want to change the base?
Conversation
tm.assert_frame_equal(left, right, check_dtype=False) | ||
|
||
|
||
def test_unstack_sort_false_na(): |
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.
If there's multiple test cases here, it's best to split each assertion to it's own test.
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'll do that later as well
@@ -1605,6 +1605,110 @@ def test_stack_sort_false(future_stack): | |||
tm.assert_frame_equal(result, expected) | |||
|
|||
|
|||
def assert_na_safe_equal(left, right): |
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 shouldn't need this function. Ideally the same NA values should be in the input and output
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.
yea, thats to my own failures, I couldn't figure out how to create a dataframe with values as they just got converted into Nan. If you know how to create the proper dataframe for the expected, I can remove that.
Do you have any tips on how i can properly create the expected DF?
unstack(sort=False)
and NA in index #61221doc/source/whatsnew/v3.0.0.rst
file if fixing a bug or adding a new feature.