Skip to content
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

BUG : fix Series.mode throwing exception with dropna=False and no nul… #58931

Closed
wants to merge 2 commits into from

Conversation

JJLLWW
Copy link
Contributor

@JJLLWW JJLLWW commented Jun 5, 2024

…ls present (#58926)

Fixes edge case in #58926 with a series of nullable dtypes but no null values.

@@ -1093,7 +1093,13 @@ def _mode(self, dropna: bool = True) -> Self:
result = mode(self._data, dropna=dropna, mask=self._mask)
res_mask = np.zeros(result.shape, dtype=np.bool_)
else:
result, res_mask = mode(self._data, dropna=dropna, mask=self._mask)
res_tuple = mode(self._data, dropna=dropna, mask=self._mask)
Copy link
Member

Choose a reason for hiding this comment

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

Is it possible to make the return type of mode consistent throughout the code base so we don't have a check like this?

Copy link
Member

Choose a reason for hiding this comment

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

I did a little investigation earlier and res_mask seems to be incorrect here if the series has pd.NA in it.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

With the mode return type consistency, it's called in a bunch of other places using the return with no mask, so not sure if it's worth changing it to then have to uglify other usages to result, _ = mode(...), return mode(...)[0]

Copy link
Member

@Aloqeely Aloqeely Jun 19, 2024

Choose a reason for hiding this comment

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

I agree it's good to have a consistent return type here. result, _ = mode(...) is not ugly to me.

@mroeschke mroeschke added the NA - MaskedArrays Related to pd.NA and nullable extension arrays label Jun 5, 2024
@@ -1093,7 +1093,13 @@ def _mode(self, dropna: bool = True) -> Self:
result = mode(self._data, dropna=dropna, mask=self._mask)
res_mask = np.zeros(result.shape, dtype=np.bool_)
else:
result, res_mask = mode(self._data, dropna=dropna, mask=self._mask)
res_tuple = mode(self._data, dropna=dropna, mask=self._mask)
Copy link
Member

Choose a reason for hiding this comment

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

I did a little investigation earlier and res_mask seems to be incorrect here if the series has pd.NA in it.

@JJLLWW JJLLWW requested a review from WillAyd as a code owner June 6, 2024 08:56
@mroeschke
Copy link
Member

Thanks for the pull request, but it appears to have gone stale. If interested in continuing, please merge in the main branch, address any review comments and/or failing tests, and we can reopen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
NA - MaskedArrays Related to pd.NA and nullable extension arrays
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BUG: .mode(dropna=False) doesn't work with nullable integers
3 participants