Skip to content

ENH: Support expressions in pd.qcut #63287

@mattharrison

Description

@mattharrison

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

small_df = pd.DataFrame(
    {'name': ['Alice', 'Bob', 'Charlie', 'David'],
     'score1': [90, 80, 70, 60],
     'score2': [85, 95, 75, 65]},
).convert_dtypes(dtype_backend='pyarrow')

result = (
    small_df
    .assign(
        score_bin=lambda df_: pd.qcut(df_['score1'], 2, labels=['low', 'high']),
        score_bin2=pd.qcut(pd.col('score2'), 2, labels=['low', 'high'])
    )
)

Issue Description

When using pd.qcut inside a .assign method, passing a column via pd.col('colname') does not work as expected. While direct column access (e.g., df_['score1']) works, using pd.col('score2') results in an error:

ValueError: Input array must be 1 dimensional

This limits the flexibility of using pd.qcut with the new pd.col API

Expected Behavior

Both score_bin and score_bin2 should be assigned correctly, with quantile bins computed for each column.

Installed Versions

INSTALLED VERSIONS

commit : 1a3230d
python : 3.11.13
python-bits : 64
OS : Darwin
OS-release : 24.6.0
Version : Darwin Kernel Version 24.6.0: Mon Jul 14 11:30:40 PDT 2025; root:xnu-11417.140.69~1/RELEASE_ARM64_T6041
machine : arm64
processor : arm
byteorder : little
LC_ALL : None
LANG : None
LOCALE : en_US.UTF-8

pandas : 3.0.0rc0
numpy : 2.4.0rc1
dateutil : 2.9.0.post0
pip : None
Cython : 3.2.2
sphinx : None
IPython : 9.8.0
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : 4.14.3
bottleneck : None
fastparquet : None
fsspec : None
html5lib : None
hypothesis : None
gcsfs : None
jinja2 : 3.1.6
lxml.etree : 6.0.2
matplotlib : 3.10.7
numba : None
numexpr : None
odfpy : None
openpyxl : None
psycopg2 : None
pymysql : None
pyarrow : 22.0.0
pyiceberg : None
pyreadstat : None
pytest : None
python-calamine : None
pytz : 2025.2
pyxlsb : None
s3fs : None
scipy : 1.16.3
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
xlsxwriter : None
zstandard : None
qtpy : None
pyqt5 : None

Metadata

Metadata

Assignees

No one assigned

    Labels

    EnhancementNeeds DiscussionRequires discussion from core team before further actioncutcut, qcutexpressionspd.eval, query, pd.col

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions