-
Notifications
You must be signed in to change notification settings - Fork 358
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
Implement Series.drop #829
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 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
Softagram Impact Report for pull/829 (head commit: 40acfe0)⭐ Change Overview
📄 Full report
Impact Report explained. Give feedback on this report to [email protected] |
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.
LGTM.
Thanks! merging. |
@ueshin Thanks for reviewing this 😃 |
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)