FEAT: Support base Index.str accessor#511
Merged
mergify[bot] merged 25 commits intoxorbitsai:mainfrom Jun 26, 2023
Merged
Conversation
Closed
Index.str accessor
Codecov Report
@@ Coverage Diff @@
## main #511 +/- ##
==========================================
+ Coverage 86.28% 93.32% +7.04%
==========================================
Files 1003 1003
Lines 77698 77718 +20
Branches 16142 16145 +3
==========================================
+ Hits 67038 72531 +5493
+ Misses 9158 3496 -5662
- Partials 1502 1691 +189
Flags with carried forward coverage won't be shown. Click here to find out more.
|
UranusSeven
reviewed
Jun 13, 2023
python/xorbits/_mars/dataframe/base/tests/test_base_execution.py
Outdated
Show resolved
Hide resolved
RayJi01
commented
Jun 14, 2023
Signed-off-by: Rui Ji <ruiji@usc.edu>
RayJi01
commented
Jun 14, 2023
Signed-off-by: Rui Ji <ruiji@usc.edu>
pangyoki
reviewed
Jun 16, 2023
UranusSeven
reviewed
Jun 21, 2023
python/xorbits/pandas/mars_adapters/tests/test_pandas_examples.py
Outdated
Show resolved
Hide resolved
Signed-off-by: Rui Ji <ruiji@usc.edu>
Signed-off-by: Rui Ji <ruiji@usc.edu>
aresnow1
reviewed
Jun 26, 2023
python/xorbits/pandas/mars_adapters/tests/test_pandas_examples.py
Outdated
Show resolved
Hide resolved
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What do these changes do?
These changes are intended to support the function of the Index.str framework similar to pandas.Index.str. Now the framework shall support the base method of Index.str such as Index. str. lower, upper, title, strip, count. Methods such as split or extract, which will modify the index structure, haven't been implemented yet but will soon come up.
Related issue number
Resolves #441
Check code requirements