Skip to content

BUG: Performing groupby with as_index=False when df.columns.name is not None drops the name #58024

Closed
@sfc-gh-joshi

Description

@sfc-gh-joshi

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(
    [[1, 2, 3]],
    columns=pd.Index(["A", "B", "C"], name="alpha")
)
df.groupby(by="A", as_index=False)["B"].sum()

Issue Description

Output of the above example:

>>> df
alpha  A  B  C
0      1  2  3
>>> df.groupby(by="A", as_index=False)["B"].sum()
   A  B
0  1  2

The name field of the columns Index object is dropped after the groupby operation.

>>> df.groupby(by="A", as_index=False)["B"].sum().columns
Index(['A', 'B'], dtype='object')

In pandas 1.5, the name was retained:

>>> pd.__version__
'1.5.3'
>>> df.groupby(by="A", as_index=False)["B"].sum()
alpha  A  B
0      1  2
>>> df.groupby(by="A", as_index=False)["B"].sum().columns
Index(['A', 'B'], dtype='object', name='alpha')

Expected Behavior

It is unclear whether this change was intentional between pandas 1.5/2.0; I could not find any mention of this in the issue tracker or release notes. If this was intentional, it should be mentioned briefly in groupby documentation; if not, then it should be fixed to preserve the name as before.

Installed Versions

INSTALLED VERSIONS

commit : 7fe86b6
python : 3.11.7.final.0
python-bits : 64
OS : Darwin
OS-release : 23.4.0
Version : Darwin Kernel Version 23.4.0: Wed Feb 21 21:45:49 PST 2024; root:xnu-10063.101.15~2/RELEASE_ARM64_T6020
machine : arm64
processor : arm
byteorder : little
LC_ALL : None
LANG : en_US.UTF-8
LOCALE : en_US.UTF-8

pandas : 3.0.0.dev0+263.g7fe86b67d3
numpy : 1.26.4
pytz : 2024.1
dateutil : 2.8.2
setuptools : 68.2.2
pip : 23.3.1
Cython : None
pytest : None
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
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : None
bottleneck : None
dataframe-api-compat : None
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : None
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : 15.0.0
pyreadstat : None
python-calamine : None
pyxlsb : None
s3fs : None
scipy : None
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.4
qtpy : None
pyqt5 : None

Metadata

Metadata

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions