Skip to content
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

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

gsmll
Copy link

@gsmll gsmll commented Apr 3, 2025

tm.assert_frame_equal(left, right, check_dtype=False)


def test_unstack_sort_false_na():
Copy link
Member

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.

Copy link
Author

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):
Copy link
Member

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

Copy link
Author

@gsmll gsmll Apr 4, 2025

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BUG: Exception with unstack(sort=False) and NA in index
2 participants