-
-
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
Fix binary operations on attrs for Series and DataFrame #59636
Merged
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
38efbaa
Fix binary operators on attrs for Series and DataFrame
fbourgey 15db834
Add tests for Series and DataFrame for attrs binary operations
fbourgey 50118d7
Add getattr as other might not possess attrs as attribute
fbourgey 953ef17
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey bc4da65
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey 2607f9c
Fix some tests in pandas/tests/generic/test_finalize.py::test_binops
fbourgey b154203
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey 87abede
remove xfail tests related to attrs
fbourgey 8559c1f
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey 742e3b1
Add all_binary_operators
fbourgey 5178113
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey 5b71171
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey 8da62bd
Merge branch 'pandas-dev:main' into series-sum-attrs
fbourgey c2c87dd
use __finalize__ for attrs bin ops in base.py
fbourgey 4da1786
use __finalize__ for attrs bin ops in frame.py
fbourgey 6436926
use __finalize__ for attrs bin ops in series.py
fbourgey 50396ad
Merge branch 'main' into series-sum-attrs
fbourgey 76b0831
Merge branch 'pandas-dev:main' into series-sum-attrs
fbourgey ef3c0b5
ENH: Ensure attrs are copied from other in Series arithmetic operatio…
fbourgey e92e431
Merge branch 'main' into series-sum-attrs
fbourgey 311b662
Merge branch 'main' into series-sum-attrs
fbourgey 95cb745
Merge branch 'pandas-dev:main' into series-sum-attrs
fbourgey c162bba
Merge branch 'main' into series-sum-attrs
fbourgey bd46491
Merge branch 'pandas-dev:main' into series-sum-attrs
fbourgey bf898c7
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey e9c3e91
REF: Refactor binary operation tests for DataFrame and Series attributes
fbourgey b72a049
REF: Enhance _construct_result method to accept 'other' parameter for…
fbourgey 3abc22d
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey 1e6197c
REF: Simplify test_attrs_binary_operations by parameterizing left and…
fbourgey 3a80cf9
Refactor DataFrame and Series methods to improve attribute handling a…
fbourgey 83e908f
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey e342a6e
Refactor DataFrame alignment logic to improve attribute consistency
fbourgey c251196
Refactor DataFrame and Series methods to enhance attribute finalizati…
fbourgey 96ddd0d
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey 155a9d1
Clean and remove unnecessry checks
fbourgey 45e2ad0
Fix: Prioritizing False if self.flags.allows_duplicate_labels or othe…
fbourgey cf67fcf
Merge remote-tracking branch 'upstream/main' into series-sum-attrs
fbourgey 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
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
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 think this resets the
attrs
ofright
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 would consider that a bug.
attrs
should be preserved in this function.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.
Should I fix it in this PR or raise a different issue?
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.
You can fix it in this PR
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.
Suggested something below