-
-
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
COMPAT: safe argsort in Index/Series #17010
Labels
Algos
Non-arithmetic algos: value_counts, factorize, sorting, isin, clip, shift, diff
Bug
Closing Candidate
May be closeable, needs more eyeballs
Comments
jreback
added
Compat
pandas objects compatability with Numpy or Python functions
Difficulty Intermediate
labels
Jul 18, 2017
yarikoptic
pushed a commit
to neurodebian/pandas
that referenced
this issue
Feb 22, 2018
Reference: 1. pandas-dev#17010 2. pandas-dev#17046 3. pandas-dev#17051 4. pandas-dev@df6934c 5. pandas-dev@480d574 Gbp-Dch: Short
6 tasks
mroeschke
added
Algos
Non-arithmetic algos: value_counts, factorize, sorting, isin, clip, shift, diff
Bug
labels
Apr 4, 2020
mroeschke
removed
the
Compat
pandas objects compatability with Numpy or Python functions
label
Apr 10, 2020
I'm not clear on what this is asking for. Do you want sort_values to not raise? |
Yeah I think these are expected behaviors as of now as we want to be more strict on type comparisons so closing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Algos
Non-arithmetic algos: value_counts, factorize, sorting, isin, clip, shift, diff
Bug
Closing Candidate
May be closeable, needs more eyeballs
These can both be fixed by falling back to using
.get_indexer()
if these fail (.argsort
is faster and handles duplicates for object dtypes, so the default is good).The text was updated successfully, but these errors were encountered: