-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
Description
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
import pandas as pd
df = pd.DataFrame({"A": [1, 2, 3, 4], "B": [1, float("nan"), 2, float("nan")], "C": [2, 4, 6, 8]})
df_grouped = df.groupby(["A", "B"], dropna=False).sum()
index = df_grouped.index
pd.testing.assert_index_equal(index, pd.MultiIndex.from_frame(index.to_frame()))Issue Description
The snippet above results in an AssertionError, because NaN in the MultiIndex is encoded in levels when returned from .groupby(), but in codes when returned from pd.MultiIndex.from_frame().
AssertionError: Index are different
Index values are different (50.0 %)
[left]: MultiIndex([(1, 1.0),
(2, nan),
(3, 2.0),
(4, nan)],
names=['A', 'B'])
[right]: MultiIndex([(1, 1.0),
(2, nan),
(3, 2.0),
(4, nan)],
names=['A', 'B'])
See
pandas/pandas/core/groupby/grouper.py
Lines 767 to 779 in 4357621
| if np.any(na_mask): | |
| if self._sort: | |
| # Replace NA codes with `largest code + 1` | |
| na_code = len(categories) | |
| codes = np.where(na_mask, na_code, codes) | |
| else: | |
| # Insert NA code into the codes based on first appearance | |
| # A negative code must exist, no need to check codes[na_idx] < 0 | |
| na_idx = na_mask.argmax() | |
| # count number of unique codes that comes before the nan value | |
| na_code = algorithms.nunique_ints(codes[:na_idx]) | |
| codes = np.where(codes >= na_code, codes + 1, codes) | |
| codes = np.where(na_mask, na_code, codes) |
Expected Behavior
I expect the assertion to pass.
Installed Versions
INSTALLED VERSIONS
commit : 0f43794
python : 3.11.4.final.0
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.19044
machine : AMD64
processor : Intel64 Family 6 Model 158 Stepping 13, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : English_United Kingdom.1252
pandas : 2.0.3
numpy : 1.25.1
pytz : 2023.3
dateutil : 2.8.2
setuptools : 68.0.0
pip : 23.2
Cython : None
pytest : 7.4.0
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : None
pandas_datareader: None
bs4 : None
bottleneck : None
brotli : None
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : 3.7.2
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : None
snappy : None
sqlalchemy : 2.0.19
tables : None
tabulate : None
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.3
qtpy : None
pyqt5 : None
Process finished with exit code 0