-
Notifications
You must be signed in to change notification settings - Fork 28.3k
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
[SPARK-36438][PYTHON] Support list-like Python objects for Series comparison #34114
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 |
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
Series
comparison with list-like Python objects.Currently
Series
doesn'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
Series
comparison with list-like Python objects now possible.How was this patch tested?
Unittests