-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-36438][PYTHON] Support list-like Python objects for Series comparison #34114
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
|
cc @ueshin @HyukjinKwon @xinrong-databricks |
|
Test build #143644 has finished for PR 34114 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #143700 has finished for PR 34114 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #143760 has finished for PR 34114 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #143780 has finished for PR 34114 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #143784 has finished for PR 34114 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #143836 has finished for PR 34114 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Test build #143851 has finished for PR 34114 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
HyukjinKwon
left a comment
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.
The change looks fine. cc @ueshin
|
Test build #143867 has finished for PR 34114 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Merged to master. |
|
Test build #144189 has finished for PR 34114 at commit
|
|
Kubernetes integration test starting |
|
Kubernetes integration test status failure |
|
Merged to master. |
What changes were proposed in this pull request?
This PR proposes to implement
Seriescomparison with list-like Python objects.Currently
Seriesdoesn't support the comparison to list-like Python objects such aslist,tuple,dict,set.Before
After
This was originally proposed in databricks/koalas#2022, and all reviews in origin PR has been resolved.
Why are the changes needed?
To follow pandas' behavior.
Does this PR introduce any user-facing change?
Yes, the
Seriescomparison with list-like Python objects now possible.How was this patch tested?
Unittests