Skip to content

BUG: pd.compare does not recognize differences when comparing values with null Int64 data type #48966

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

Merged
merged 11 commits into from
Oct 14, 2022
2 changes: 2 additions & 0 deletions doc/source/whatsnew/v1.6.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ Indexing
- Bug in :meth:`DataFrame.reindex` filling with wrong values when indexing columns and index for ``uint`` dtypes (:issue:`48184`)
- Bug in :meth:`DataFrame.reindex` casting dtype to ``object`` when :class:`DataFrame` has single extension array column when re-indexing ``columns`` and ``index`` (:issue:`48190`)
- Bug in :func:`~DataFrame.describe` when formatting percentiles in the resulting index showed more decimals than needed (:issue:`46362`)
- Bug in :meth:`DataFrame.compare` does not recognize differences when comparing ``NA`` with value in nullable dtypes (:issue:`48939`)
-

Missing
^^^^^^^
Expand Down
1 change: 1 addition & 0 deletions pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -9262,6 +9262,7 @@ def compare(
)

mask = ~((self == other) | (self.isna() & other.isna()))
mask.fillna(True, inplace=True)

if not keep_equal:
self = self.where(mask)
Expand Down
72 changes: 60 additions & 12 deletions pandas/tests/frame/methods/test_compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,17 +238,65 @@ def test_invalid_input_result_names(result_names):
df1.compare(df2, result_names=result_names)


def test_compare_ea_and_np_dtype():
# GH#44014
df1 = pd.DataFrame({"a": [4.0, 4], "b": [1.0, 2]})
df2 = pd.DataFrame({"a": pd.Series([1, pd.NA], dtype="Int64"), "b": [1.0, 2]})
@pytest.mark.parametrize(
"df1,df2,expected",
[
(
pd.DataFrame({"a": [4.0, 4], "b": [1.0, 2]}),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I meant parametrising single values, not the whole object. This is really hard to read

Copy link
Contributor Author

@vamsi-verma-s vamsi-verma-s Oct 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought this would be easier to understand. I've changed it now. please take a look.

pd.DataFrame({"a": pd.Series([1, pd.NA], dtype="Int64"), "b": [1.0, 2]}),
pd.DataFrame(
{
("a", "self"): [4.0, 4],
("a", "other"): pd.Series([1, pd.NA], dtype="Int64"),
("b", "self"): np.nan,
("b", "other"): np.nan,
}
),
),
(
pd.DataFrame({"a": pd.Series([4, pd.NA], dtype="Int64"), "b": [1.0, 2]}),
pd.DataFrame({"a": [4, pd.NA], "b": [1.0, 2]}),
pd.DataFrame(
{
("a", "self"): pd.Series([4, pd.NA], dtype="Int64"),
("a", "other"): pd.Series([4, pd.NA]),
("b", "self"): np.nan,
("b", "other"): np.nan,
}
),
),
],
)
def test_compare_ea_and_np_dtype(df1, df2, expected):
result = df1.compare(df2, keep_shape=True)
tm.assert_frame_equal(result, expected)


@pytest.mark.parametrize(
"df1,df2,expected",
[
(
pd.DataFrame({"a": pd.Series([4.0, pd.NA], dtype="Int64")}),
pd.DataFrame({"a": pd.Series([3, pd.NA], dtype="Int64")}),
pd.DataFrame(
{
("a", "self"): pd.Series([4, pd.NA], dtype="Int64"),
("a", "other"): pd.Series([3, pd.NA], dtype="Int64"),
}
),
),
(
pd.DataFrame({"a": pd.Series([4, pd.NA], dtype="Int64")}),
pd.DataFrame({"a": pd.Series([4, pd.NA], dtype="Int64")}),
pd.DataFrame(
{
("a", "self"): pd.Series([pd.NA, pd.NA], dtype="Int64"),
("a", "other"): pd.Series([pd.NA, pd.NA], dtype="Int64"),
}
),
),
],
)
def test_compare_nullable_int64_dtype(df1, df2, expected):
result = df1.compare(df2, keep_shape=True)
expected = pd.DataFrame(
{
("a", "self"): [4.0, np.nan],
("a", "other"): pd.Series([1, pd.NA], dtype="Int64"),
("b", "self"): np.nan,
("b", "other"): np.nan,
}
)
tm.assert_frame_equal(result, expected)