[SPARK-36438][PYTHON] Support list-like Python objects for Series comparison#34114
[SPARK-36438][PYTHON] Support list-like Python objects for Series comparison#34114itholic wants to merge 10 commits into
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.
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