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: dropna affects observed in DataFrame.groupby() since v1.5 #48645

Closed
2 of 3 tasks
pwwang opened this issue Sep 19, 2022 · 2 comments · Fixed by #48702
Closed
2 of 3 tasks

BUG: dropna affects observed in DataFrame.groupby() since v1.5 #48645

pwwang opened this issue Sep 19, 2022 · 2 comments · Fixed by #48702
Assignees
Labels
Bug Categorical Categorical Data Type Groupby Missing-data np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate Regression Functionality that used to work in a prior pandas version
Milestone

Comments

@pwwang
Copy link

pwwang commented Sep 19, 2022

Pandas version checks

  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of pandas.

  • I have confirmed this bug exists on the main branch of pandas.

Reproducible Example

# With pandas 1.5

from pandas import DataFrame, Categorical

df = DataFrame({"x": Categorical([1, 2], categories=[1, 2, 3]), "y": [3, 4]})

df.groupby("x", observed=False).grouper.result_index
# CategoricalIndex([1, 2, 3], categories=[1, 2, 3], ordered=False, dtype='category', name='x')

df.groupby("x", observed=False, dropna=False).grouper.result_index
# CategoricalIndex([1, 2], categories=[1, 2, 3], ordered=False, dtype='category', name='x')
# ------------------------------------------------------------------------------------------
# Unexpected result ↑

df.groupby("x", observed=False, dropna=True).grouper.result_index
# CategoricalIndex([1, 2, 3], categories=[1, 2, 3], ordered=False, dtype='category', name='x')


# With pandas 1.4.4 and prior

df.groupby("x", observed=False).grouper.result_index
# CategoricalIndex([1, 2, 3], categories=[1, 2, 3], ordered=False, dtype='category', name='x')

df.groupby("x", observed=False, dropna=False).grouper.result_index
# CategoricalIndex([1, 2, 3], categories=[1, 2, 3], ordered=False, dtype='category', name='x')

df.groupby("x", observed=False, dropna=True).grouper.result_index
# CategoricalIndex([1, 2, 3], categories=[1, 2, 3], ordered=False, dtype='category', name='x')

Issue Description

dropna=False in DataFrame.groupby() should not affect the results when observed=False.

Expected Behavior

Expected the behavior with pandas 1.4.4 and prior.

Installed Versions

INSTALLED VERSIONS

commit : 87cfe4e
python : 3.9.5.final.0
python-bits : 64
OS : Linux
OS-release : 5.15.57.1-microsoft-standard-WSL2
Version : #1 SMP Wed Jul 27 02:20:31 UTC 2022
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : None
LANG : C.UTF-8
LOCALE : en_US.UTF-8

pandas : 1.5.0
numpy : 1.23.3
pytz : 2022.1
dateutil : 2.8.2
setuptools : 58.0.0
pip : 22.2.2
Cython : None
pytest : 6.2.5
hypothesis : None
sphinx : 4.5.0
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.6.3
html5lib : 1.1
pymysql : None
psycopg2 : None
jinja2 : 3.1.2
IPython : 8.1.1
pandas_datareader: None
bs4 : 4.9.3
bottleneck : None
brotli :
fastparquet : None
fsspec : 2022.02.0
gcsfs : None
matplotlib : 3.5.1
numba : 0.53.1
numexpr : None
odfpy : None
openpyxl : 3.0.8
pandas_gbq : None
pyarrow : 7.0.0
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : 1.8.0
snappy : None
sqlalchemy : 1.4.28
tables : None
tabulate : None
xarray : None
xlrd : None
xlwt : None
zstandard : None
tzdata : None

@pwwang pwwang added Bug Needs Triage Issue that has not been reviewed by a pandas team member labels Sep 19, 2022
@phofl phofl added this to the 1.5.1 milestone Sep 19, 2022
@phofl phofl added Groupby Regression Functionality that used to work in a prior pandas version and removed Needs Triage Issue that has not been reviewed by a pandas team member labels Sep 19, 2022
@phofl
Copy link
Member

phofl commented Sep 19, 2022

cc @rhshadrach

Confirmed:

56a71845decdc308d4210d74c7a59e42f0762c31 is the first bad commit
commit 56a71845decdc308d4210d74c7a59e42f0762c31
Author: Richard Shadrach <[email protected]>
Date:   Thu Aug 18 12:09:09 2022 -0400

    BUG: algorithms.factorize moves null values when sort=False (#46601)

#46601

@rhshadrach
Copy link
Member

rhshadrach commented Sep 20, 2022

#46601 fixed an issue with dropna and categorical, namely dropna with categorical still drops null values. On 1.4.x:

values, dtype = (["y", None, "x", "y"], "category")
key = pd.Series(values, dtype=dtype)
df = pd.DataFrame({"key": key, "a": [1, 2, 3, 4]})
gb = df.groupby("key", dropna=False)
print(gb.sum())

#      a
# key   
# x    3
# y    5

The null value is included in the result on 1.5.0. As identified, the patch did not correctly implement the case where observed=False.

I've looked into this, and it appears to me our current implementation of categorical with nulls and dropna are incompatible in groupby. Namely, categorical encodes values as nonnegative integers with nulls being represented by -1 while groupby with dropna=False requires nulls be encoded by nonnegative integers.

We could maybe hack in a patch where we add the null value(s?) to the categories only to remove them upon returning the result. This seems like it would be too significant of a change for a patch release, fragile, and prone to bugs. I am wondering if a better direction I think would be to reimplement groupby so that negative codes are only dropped when dropna=True. This may have some drawbacks and would need some experimenting, but again, too large of a change for a patch version in my opinion.

With this, my recommendation is to undo the offending line from #46601, i.e. change

if self._dropna and self._passed_categorical:

to become if self._passed_categorical:. This would make it so that dropna=False does not work with categorical again, but fixing this regression. I will put up a PR for this, but wanted to see if others have any thoughts first.

cc @jbrockmendel @mroeschke @jreback @phofl @jorisvandenbossche

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Categorical Categorical Data Type Groupby Missing-data np.nan, pd.NaT, pd.NA, dropna, isnull, interpolate Regression Functionality that used to work in a prior pandas version
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants