-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
DataFrameGroupBy.agg with nan results into inf #59106
Comments
I believe the code you are complaining about is in these lines (but it's worth double-checking): pandas/pandas/core/_numba/kernels/min_max_.py Line 106 in bef88ef
pandas/pandas/core/_numba/kernels/min_max_.py Lines 49 to 52 in bef88ef
Scratch that
We need to be precise in the quantification all vs any when dealing with aggregation or reduction. NumPy follows "any nan implies nan": np.array([0, 1, 2]).max() # 2 (no nan => no nan)
np.array([0, 1, np.inf]).max() # inf (no nan => no nan)
np.array([np.nan, 0, 1, np.inf]).max() # nan (some nan => nan)
(np.array([0, 1, np.inf]) / np.array([0, 1, np.inf])).max() # nan (some nan => nan) Pandas follows "all NA implies NA": pd.Series([0, 1, 2], dtype='Float64').max() # 2 (no NA => no NA)
pd.Series([0, 1, np.inf], dtype='Float64').max() # inf (no NA => no NA)
pd.Series([np.nan, 0, 1, np.inf], dtype='Float64').max() # inf (some NA =/=> NA)
pd.Series([np.nan, np.nan, np.nan], dtype='Float64').max() # <NA> (all NA => NA) To complicate the matter, Pandas treats Now, to complicate the matter even further, Pandas transforms s = pd.Series([np.nan, 0, 1], dtype="Float64")
s.max() # 1.0, because max([<NA>, 0, 1]) is 1
(s / s).max() # <NA>, because max([<NA>, np.nan, 1]) is np.nan which becomes <NA>
I misunderstood your suggestion initially. You indeed insist on treating s = pd.Series([np.nan, 0, 1], dtype="Float64")
(s / s).max() # <NA>
(s / s).groupby([9, 9, 9]).max().iat[0] # 1.0 The last two lines were expected to give the same result (whatever it should be). |
Edit: I believe I forgot that this was groupby. There is no skipna argument. Further investigations and PRs to fix are welcome! |
take |
I have a feeling all such problems stem from the fact we use NA/None and NaN interchangeably whereas they are not. A few cornercases here:
|
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
Issue Description
DataFrameGroupBy.agg handles poorly nan.
Unfortunately, sometimes happens that some nullable fields have some nan.
cfr: #32265
And this case falls into unexpected behavior in conjunction with groupby.
In a nutshell:
Having nan into a Float field make the groupby()[min/max] computation wrong
Expected Behavior
From my perspective, a nan must generate other nan,
an aggregation of nan, must again generate nan
semantically: "An invalid value, cannot be computed, so a transformation of it should result again into an invalid value"
an aggregation (via groupby) of nan, should result into nan
Installed Versions
INSTALLED VERSIONS
commit : fd3f571
python : 3.10.13.final.0
python-bits : 64
OS : Linux
OS-release : 5.4.0-186-generic
Version : #206-Ubuntu SMP Fri Apr 26 12:31:10 UTC 2024
machine : x86_64
processor : x86_64
byteorder : little
LC_ALL : None
LANG : en_US.UTF-8
LOCALE : en_US.UTF-8
pandas : 2.2.0
numpy : 1.23.5
pytz : 2024.1
dateutil : 2.8.2
setuptools : 65.5.0
pip : 24.1
Cython : 0.29.37
pytest : 7.4.4
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : 3.1.9
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 3.1.3
IPython : 8.22.1
pandas_datareader : None
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : None
bottleneck : None
dataframe-api-compat : None
fastparquet : 2024.2.0
fsspec : 2024.6.0
gcsfs : 2024.6.0
matplotlib : 3.7.5
numba : 0.59.1
numexpr : None
odfpy : None
openpyxl : 3.1.2
pandas_gbq : None
pyarrow : 12.0.1
pyreadstat : None
python-calamine : None
pyxlsb : None
s3fs : None
scipy : 1.10.1
sqlalchemy : 2.0.28
tables : None
tabulate : 0.9.0
xarray : None
xlrd : None
zstandard : None
tzdata : 2024.1
qtpy : None
pyqt5 : None
The text was updated successfully, but these errors were encountered: