-
-
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
API (string dtype): implement hierarchy (NA > NaN, pyarrow > python) for consistent comparisons between different string dtypes #61138
Open
jorisvandenbossche
wants to merge
8
commits into
pandas-dev:main
Choose a base branch
from
jorisvandenbossche:string-dtype-comparison-methods-priority
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
3c4d782
API (string dtype): implement hierarchy (NA > NaN, pyarrow > python) …
jorisvandenbossche 7ffb08f
fix string arith tests
jorisvandenbossche 48907c3
fix for build without pyarrow
jorisvandenbossche 2058120
fix xfail condition
jorisvandenbossche 4ebd93b
fix type annotation
jorisvandenbossche 33db5d0
Merge remote-tracking branch 'upstream/main' into string-dtype-compar…
jorisvandenbossche 51340a9
re-add test with list
jorisvandenbossche e2bfe18
cleanup
jorisvandenbossche 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ | |
from pandas.api.types import is_string_dtype | ||
from pandas.core.arrays import ArrowStringArray | ||
from pandas.core.arrays.string_ import StringDtype | ||
from pandas.tests.arrays.string_.test_string import string_dtype_highest_priority | ||
from pandas.tests.extension import base | ||
|
||
|
||
|
@@ -202,10 +203,13 @@ def _cast_pointwise_result(self, op_name: str, obj, other, pointwise_result): | |
dtype = cast(StringDtype, tm.get_dtype(obj)) | ||
if op_name in ["__add__", "__radd__"]: | ||
cast_to = dtype | ||
dtype_other = tm.get_dtype(other) if not isinstance(other, str) else None | ||
if isinstance(dtype_other, StringDtype): | ||
cast_to = string_dtype_highest_priority(dtype, dtype_other) | ||
elif dtype.na_value is np.nan: | ||
cast_to = np.bool_ # type: ignore[assignment] | ||
elif dtype.storage == "pyarrow": | ||
cast_to = "boolean[pyarrow]" # type: ignore[assignment] | ||
cast_to = "bool[pyarrow]" # type: ignore[assignment] | ||
else: | ||
cast_to = "boolean" # type: ignore[assignment] | ||
return pointwise_result.astype(cast_to) | ||
|
@@ -237,9 +241,11 @@ def test_arith_series_with_array( | |
using_infer_string | ||
and all_arithmetic_operators == "__radd__" | ||
and ( | ||
(dtype.na_value is pd.NA) or (dtype.storage == "python" and HAS_PYARROW) | ||
dtype.na_value is pd.NA | ||
and not (not HAS_PYARROW and dtype.storage == "python") | ||
) | ||
Comment on lines
241
to
246
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. Nit: This would be a bit cleaner as
|
||
): | ||
# TODO(infer_string) | ||
mark = pytest.mark.xfail( | ||
reason="The pointwise operation result will be inferred to " | ||
"string[nan, pyarrow], which does not match the input dtype" | ||
|
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.
For this case of comparing with NA, we already have a dedicated test just above, so removing it here