Skip to content
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

BUG: unstack incorrectly reshuffles data when sort=False #61217

Closed
3 tasks done
wahsmail opened this issue Apr 2, 2025 · 3 comments
Closed
3 tasks done

BUG: unstack incorrectly reshuffles data when sort=False #61217

wahsmail opened this issue Apr 2, 2025 · 3 comments
Assignees
Labels
Bug Needs Triage Issue that has not been reviewed by a pandas team member

Comments

@wahsmail
Copy link

wahsmail commented Apr 2, 2025

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

a = pd.Series([f'a{i}' for i in range(10)])
b = pd.Series([f'b{i}' for i in range(10)])

ser = pd.concat({'a': a, 'b': b})  # multi-indexed series e.g. ('a', 0) = 'a0'
df = ser.unstack(0, sort=False)  # dataframe with integer index and columns=['a','b'], some a values end up in b column and vice-versa

Issue Description

When unstacking a multi-indexed series (or dataframe), passing sort=False fails to preserve the original mapping of multi-index keys to values. In other words, the resulting "a" column has a mix of "a" and "b"-prefixed values.

Expected Behavior

I would expect sort=False to prevent a sort of the newly produced column names but preserve the mapping of multi-index keys to values based on the following from the documentation: "sort: Sort the level(s) in the resulting MultiIndex columns."

Installed Versions

INSTALLED VERSIONS

commit : 0691c5c
python : 3.11.9
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.19045
machine : AMD64
processor : AMD64 Family 25 Model 97 Stepping 2, AuthenticAMD
byteorder : little
LC_ALL : None
LANG : None
LOCALE : English_United States.1252

pandas : 2.2.3
numpy : 2.2.2
pytz : 2025.1
dateutil : 2.9.0.post0
pip : 25.0.1
Cython : None
sphinx : None
IPython : None
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : None
blosc : None
bottleneck : None
dataframe-api-compat : None
fastparquet : None
fsspec : None
html5lib : None
hypothesis : None
gcsfs : None
jinja2 : None
lxml.etree : None
matplotlib : None
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
psycopg2 : None
pymysql : None
pyarrow : None
pyreadstat : None
pytest : None
python-calamine : None
pyxlsb : None
s3fs : None
scipy : None
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
xlsxwriter : None
zstandard : None
tzdata : 2025.1
qtpy : None
pyqt5 : None

@wahsmail wahsmail added Bug Needs Triage Issue that has not been reviewed by a pandas team member labels Apr 2, 2025
@gsmll
Copy link

gsmll commented Apr 2, 2025

take

@gsmll
Copy link

gsmll commented Apr 2, 2025

This seems to work properly in the main branch of pandas.

@snitish
Copy link
Member

snitish commented Apr 3, 2025

Confirmed that this bug no longer exists on main. Closing.

@snitish snitish closed this as completed Apr 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Needs Triage Issue that has not been reviewed by a pandas team member
Projects
None yet
Development

No branches or pull requests

3 participants