-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Calling qcut with too many duplicates now gives an informative error #9030
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
Conversation
@@ -165,6 +165,10 @@ def qcut(x, q, labels=None, retbins=False, precision=3): | |||
else: | |||
quantiles = q | |||
bins = algos.quantile(x, quantiles) | |||
if len(algos.unique(bins)) < len(bins): | |||
bins_sorted = np.sort(bins, axis=None) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can do this as a set operation (set(bins)-set(unique(bins))
once you know that you have too many bins
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That doesn't work. Say bins = [0,0,0,1,1,1]. We want [0,1]. (set(bins)-set(unique(bins)) gives set([]).
Something like it should, but I can't think of it at the moment.
|
pls move the release note to v0.16.0. and rebase. thxs |
@@ -164,7 +164,7 @@ Bug Fixes | |||
- Bug in ``merge`` where ``how='left'`` and ``sort=False`` would not preserve left frame order (:issue:`7331`) | |||
- Fix: The font size was only set on x axis if vertical or the y axis if horizontal. (:issue:`8765`) | |||
- Fixed division by 0 when reading big csv files in python 3 (:issue:`8621`) | |||
|
|||
- Fixed an unclear error message in ``qcut`` when repeated values result in duplicate bin edges. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pls move this to 0.16.0
pls move the release note to 0.16.0 and rebase |
closing pls reopen if/when updated |
Closes #7751.