Implement Series.drop#829
Merged
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## master #829 +/- ##
=========================================
+ Coverage 94.27% 94.3% +0.02%
=========================================
Files 34 34
Lines 6150 6181 +31
=========================================
+ Hits 5798 5829 +31
Misses 352 352
Continue to review full report at Codecov.
|
ueshin
reviewed
Sep 27, 2019
Contributor
Author
|
@ueshin I just resolved build failure here related with python 3.5 compatibility. Could you check this PR if maybe when you available? 😄 |
df12ff9 to
508993d
Compare
ueshin
reviewed
Sep 30, 2019
ueshin
reviewed
Oct 1, 2019
ueshin
reviewed
Oct 2, 2019
Softagram Impact Report for pull/829 (head commit: 40acfe0)⭐ Change Overview
📄 Full report
Impact Report explained. Give feedback on this report to support@softagram.com |
Contributor
|
Thanks! merging. |
Contributor
Author
|
@ueshin Thanks for reviewing this 😃 |
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.

Resolves #822
Like pandas Series.drop (https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.drop.html#pandas.Series.drop)
I implemented drop function for series.
Example:
Also Support for MultiIndex
(above examples are using pandas one)