-
-
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: Fixed merge on dtype equal categories #19553
Conversation
Codecov Report
@@ Coverage Diff @@
## master #19553 +/- ##
==========================================
+ Coverage 91.6% 91.62% +0.01%
==========================================
Files 150 150
Lines 48750 48780 +30
==========================================
+ Hits 44657 44694 +37
+ Misses 4093 4086 -7
Continue to review full report at Codecov.
|
doc/source/whatsnew/v0.23.0.txt
Outdated
@@ -679,6 +679,9 @@ Categorical | |||
- Bug in :func:`pandas.api.types.union_categoricals` returning the wrong result | |||
when all the categoricals had the same categories, but in a different order. | |||
This affected :func:`pandas.concat` with Categorical data (:issue:`19096`). | |||
- Bug in :func:`pandas.merge` when joining on a ``Categorical`` column where | |||
the categories were unordered and had the same values but in a different |
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.
looks fine
maybe should elevate to a subsection to highlite this
Found one more case hit by this ( |
thanks! looks good @TomAugspurger, yeah way you did docs is good. |
closes #19551