-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
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: Series.value_counts with sort=False returns result sorted on values for Series with string dtype #55224
Comments
Thanks for the report! Confirmed on main. PRs to fix are most welcome. |
Hi, I'm a Pandas user but never contributed, I would like to take this issue, is it okay? |
take |
:D now I know how it works |
@wangdong2023 Are you still working on it? |
@tirth-hihoriya I think @yusharth took the task |
I am working on it @tirth-hihoriya . Thanks for asking, will let you know if I need help. |
Hey there maintainers! I want to resolve this issue. Can I ? |
@Divyansh3021, I have already created PR #55260 and am waiting for a maintainer to follow up and help. |
okay |
@CynthiaLuijkx @Divyansh3021 @yusharth I'm taking this issue, is it okay? |
Thanks for asking @Chinmay-Bakhale. It's fine by me, but make sure you ain't stepping onto someone's toe because @tirth-hihoriya has deliberately linked a PR already. |
Can I take this issue? |
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
which results in:
Issue Description
Series.value_counts with
sort=False
returns result sorted on values for Series withstring
dtype.The output returned is sorted on values, while using
sort=False
, according to the documentation, should ensure that the result is ordered by the order in which the different categories are encountered.From a brief dive into the code I believe the error is found in
core\algorithms.py
invalue_couns_internal
; on line 906, in case the values are an extension arrayresult = Series(values, copy=False)._values.value_counts(dropna=dropna)
is called and the
sort
keyword is not passed on.Expected Behavior
The expected behavior is that the results are ordered by the order in which the categories were encountered, rather than by value, as stated in the
value_counts
documentation. This does happen correctly when the series still has theobject
dtype:which results in:
Workaround
This code snippet does return the expected values:
Result:
Installed Versions
INSTALLED VERSIONS
commit : e86ed37
python : 3.10.8.final.0
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.19045
machine : AMD64
processor : Intel64 Family 6 Model 166 Stepping 0, GenuineIntel
byteorder : little
LC_ALL : en_US.UTF-8
LANG : en_US.UTF-8
LOCALE : Dutch_Netherlands.1252
pandas : 2.1.1
numpy : 1.24.3
pytz : 2023.3
dateutil : 2.8.2
setuptools : 65.5.0
pip : 22.3.1
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : 1.1
pymysql : None
psycopg2 : None
jinja2 : 3.1.2
IPython : 8.15.0
pandas_datareader : None
bs4 : 4.12.2
bottleneck : None
dataframe-api-compat: None
fastparquet : 2023.8.0
fsspec : 2023.9.0
gcsfs : None
matplotlib : 3.7.1
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : 13.0.0
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : 1.11.2
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.3
qtpy : None
pyqt5 : None
The text was updated successfully, but these errors were encountered: