-
-
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
Open
gsmll
wants to merge
8
commits into
pandas-dev:main
Choose a base branch
from
gsmll:fix-issue-61221
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7503537
BUG: Fix #61221: Exception with unstack(sort=False) and NA in index.
c0a7c80
BUG: Fix #61221: Exception with unstack(sort=False) and NA in index.
7a8fddb
fixed formatting
a397466
fixed issue with unsorted unstack, should now work
eb2fb7a
Merge branch 'main' into fix-issue-61221
gsmll 3539ac6
Instead of creating variable self.na, constructed na index locally
64f5173
fixed issues with local variable
e2b38b1
fixed the fix -oops
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1605,6 +1605,110 @@ def test_stack_sort_false(future_stack): | |
tm.assert_frame_equal(result, expected) | ||
|
||
|
||
def assert_na_safe_equal(left, right): | ||
"""Compare DataFrames ignoring NA type differences""" | ||
left = left.rename(columns={pd.NA: np.nan}, level=1) | ||
right = right.rename(columns={pd.NA: np.nan}, level=1) | ||
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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. I'll do that later as well |
||
# GH 61221 | ||
levels1 = ["b", "a"] | ||
levels2 = Index([1, 2, 3, pd.NA], dtype=pd.Int64Dtype()) | ||
index = MultiIndex.from_product([levels1, levels2], names=["level1", "level2"]) | ||
df = DataFrame({"value": range(len(index))}, index=index) | ||
result = df.unstack(level="level2", sort=False) | ||
expected = DataFrame( | ||
{ | ||
("value", 1): [0, 4], | ||
("value", 2): [1, 5], | ||
("value", 3): [2, 6], | ||
("value", pd.Int64Dtype().na_value): [3, 7], | ||
}, | ||
index=Index(["b", "a"], name="level1"), | ||
columns=MultiIndex.from_tuples( | ||
[ | ||
("value", 1), | ||
("value", 2), | ||
("value", 3), | ||
("value", pd.Int64Dtype().na_value), | ||
], | ||
names=[None, "level2"], | ||
), | ||
) | ||
assert_na_safe_equal(result, expected) | ||
levels2 = Index([pd.NA, 1, 2, 3], dtype=pd.Int64Dtype()) | ||
index = MultiIndex.from_product([levels1, levels2], names=["level1", "level2"]) | ||
df = DataFrame({"value": range(len(index))}, index=index) | ||
result = df.unstack(level="level2", sort=False) | ||
expected = DataFrame( | ||
{ | ||
("value", pd.Int64Dtype().na_value): [0, 4], | ||
("value", 1): [1, 5], | ||
("value", 2): [2, 6], | ||
("value", 3): [3, 7], | ||
}, | ||
index=Index(["b", "a"], name="level1"), | ||
columns=MultiIndex.from_tuples( | ||
[ | ||
("value", pd.Int64Dtype().na_value), | ||
("value", 1), | ||
("value", 2), | ||
("value", 3), | ||
], | ||
names=[None, "level2"], | ||
), | ||
) | ||
assert_na_safe_equal(result, expected) | ||
levels2 = Index([1, pd.NA, 2, 3], dtype=pd.Int64Dtype()) | ||
index = MultiIndex.from_product([levels1, levels2], names=["level1", "level2"]) | ||
df = DataFrame({"value": range(len(index))}, index=index) | ||
result = df.unstack(level="level2", sort=False) | ||
expected = DataFrame( | ||
{ | ||
("value", 1): [0, 4], | ||
("value", pd.Int64Dtype().na_value): [1, 5], | ||
("value", 2): [2, 6], | ||
("value", 3): [3, 7], | ||
}, | ||
index=Index(["b", "a"], name="level1"), | ||
columns=MultiIndex.from_tuples( | ||
[ | ||
("value", 1), | ||
("value", pd.Int64Dtype().na_value), | ||
("value", 2), | ||
("value", 3), | ||
], | ||
names=[None, "level2"], | ||
), | ||
) | ||
assert_na_safe_equal(result, expected) | ||
levels2 = Index([3, pd.NA, 1, 2], dtype=pd.Int64Dtype()) | ||
index = MultiIndex.from_product([levels1, levels2], names=["level1", "level2"]) | ||
df = DataFrame({"value": range(len(index))}, index=index) | ||
result = df.unstack(level="level2", sort=False) | ||
expected = DataFrame( | ||
{ | ||
("value", 3): [0, 4], | ||
("value", pd.Int64Dtype().na_value): [1, 5], | ||
("value", 1): [2, 6], | ||
("value", 2): [3, 7], # Use actual pd.NA object | ||
}, | ||
index=Index(["b", "a"], name="level1"), | ||
columns=MultiIndex.from_tuples( | ||
[ | ||
("value", 3), | ||
("value", pd.Int64Dtype().na_value), | ||
("value", 1), | ||
("value", 2), | ||
], | ||
names=[None, "level2"], | ||
), | ||
) | ||
assert_na_safe_equal(result, expected) | ||
|
||
|
||
@pytest.mark.filterwarnings("ignore:The previous implementation of stack is deprecated") | ||
def test_stack_sort_false_multi_level(future_stack): | ||
# GH 15105 | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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?