Skip to content

BUG: list output incorrectly reused when calling DataFrame.apply #54250

Open
@pkch

Description

@pkch

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], 'b': ['x', 'y', 'z']})
print(df.apply(lambda s: [s], axis=1))

Issue Description

Pandas seems to incorrectly reuse the ouput list of the function passed to pd.DataFrame.apply().

Expected Behavior

Expected 3 different rows in the output. Instead got 3 identical rows.

Installed Versions

INSTALLED VERSIONS

commit : b5958ee
python : 3.10.11.final.0
python-bits : 64
OS : Linux
OS-release : 4.15.0-smp-931.25.0.0
Version : #1 [v4.15.0-931.25.0.0] SMP @1683922095
machine : x86_64
processor :
byteorder : little
LC_ALL : en_US.UTF-8
LANG : None
LOCALE : en_US.UTF-8

pandas : 1.1.5
numpy : 1.24.1
pytz : 2023.3
dateutil : 2.8.1
pip : None
setuptools : None
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : 4.9.1
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 3.1.2
IPython : 3.2.3
pandas_datareader: None
bs4 : None
bottleneck : None
fsspec : 2023.3.0
fastparquet : None
gcsfs : None
matplotlib : 3.6.1
numexpr : 2.8.3
odfpy : None
openpyxl : 3.0.7
pandas_gbq : 0.12.0
pyarrow : 10.0.1
pytables : None
pyxlsb : None
s3fs : None
scipy : 1.8.1
sqlalchemy : None
tables : 3.6.2-dev
tabulate : 0.8.10
xarray : None
xlrd : 1.2.0
xlwt : None
numba : None

Metadata

Metadata

Assignees

No one assigned

    Labels

    ApplyApply, Aggregate, Transform, MapBugNested DataData where the values are collections (lists, sets, dicts, objects, etc.).

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions