-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: Fix difference functionality for Period Indexes #59148
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
Closed
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
da47af8
fix difference functionality for period indexes, add additional tests
TiffL 3247048
update whatsnew doc
TiffL 7c50a76
add type annotation, fix namespace usage
TiffL ba27811
fix namespace usage
TiffL 4d0c9b5
fix casting
TiffL 2081a03
add back missed try block
TiffL 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -314,6 +314,19 @@ def test_difference(self, sort): | |
expected = expected.sort_values() | ||
tm.assert_index_equal(result_difference, expected) | ||
|
||
def test_difference_mismatched_dtypes(self, sort): | ||
# GH58971 | ||
index = period_range("2022-01-01", periods=5, freq="M") | ||
other = pd.Index(["2022-02", "2022-03"]) | ||
|
||
idx_diff = index.difference(other, sort) | ||
expected = PeriodIndex(["2022-01", "2022-04", "2022-05"], freq="M") | ||
tm.assert_index_equal(idx_diff, expected) | ||
|
||
idx_diff = other.difference(index, sort) | ||
expected = pd.Index([]) | ||
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. No, the difference should be the entire ‘other’ |
||
tm.assert_index_equal(idx_diff, expected) | ||
|
||
def test_difference_freq(self, sort): | ||
# GH14323: difference of Period MUST preserve frequency | ||
# but the ability to union results must be preserved | ||
|
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.
I don’t think we do this type of casting in general. In fact, I’d expect the private _difference to only be reached with matching dtypes