Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix alignment in Series subtraction with MultiIndex, Index and NaN values (#60908)#61381

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
rit4rosa wants to merge2 commits intopandas-dev:main
base:main
Choose a base branch
Loading
fromrit4rosa:fixed-60908

Conversation

rit4rosa
Copy link

@rit4rosarit4rosa commentedApr 30, 2025
edited
Loading

This pull requestfixes#60908 , where subtracting a Series with a MultiIndex containing NaN values from a Series with a regular Index could lead to incorrect results or unexpected behavior.

The issue was caused by the _align_for_op method not properly handling cases where the left-hand Series had a MultiIndex and the right-hand side had a flat Index, especially when NaN values were present. This could lead to misalignment during arithmetic operations.

To fix this, the _align_for_op method was updated to:

  • Ensure that when the left Series has a MultiIndex and the right Series has a regular Index, the right Series is properly reindexed based on the first level of the left-hand MultiIndex, even when NaN values are involved.

  • Correctly handle cases where either Series is empty.

Additionally, a new test test_series_subtraction_with_nan_and_levels (added in test_subtraction_nanindex) was introduced to verify that:

  • Subtracting a Series with a MultiIndex (including NaNs) from a regular Index works correctly.

  • The result maintains the correct alignment and expected output values.

Fixes an issue where subtracting a Series with a MultiIndex containingNaN values from a regular Index Series led to incorrect results.Updated _align_for_op to properly reindex right-hand Series based onthe first level of the MultiIndex and handle empty Series cases.Added test_subtraction_nanindex to ensure correct behavior.
@rit4rosa
Copy link
Author

Hi, just following up on this PR. Let me know if you have any feedback or if anything is needed from my side. Thank you

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

BUG:ValueError: Length of values (5) does not match length of index (4) when subtracting two series with MultIndex and Index and nan values
1 participant
@rit4rosa

[8]ページ先頭

©2009-2025 Movatter.jp