-
Notifications
You must be signed in to change notification settings - Fork 915
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 DataFrame pct_change #9805
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #9805 +/- ##
================================================
+ Coverage 10.42% 10.65% +0.23%
================================================
Files 119 122 +3
Lines 20603 20909 +306
================================================
+ Hits 2148 2228 +80
- Misses 18455 18681 +226
Continue to review full report at Codecov.
|
e1a1a81
to
b0f6ba3
Compare
This PR has been labeled |
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.
I don't have much to add here. I think after this we can start thinking about moving diff
and pct_change
to indexed_frame
so that we get both function for Series
for free.
Co-authored-by: Michael Wang <[email protected]>
@gpucibot merge |
Subsequent to #9805, this PR adds support for Groupby.pct_change() Fixes #9606 Replaces #10444 Authors: - Sheilah Kirui (https://github.com/skirui-source) Approvers: - Ashwin Srinath (https://github.com/shwina) URL: #11144
Fixes: #9603
Next steps:
copying::shift
doesn't handleabs(offset) > column.size()
#10314diff
andpct_change
toindexed_frame
so that both are accessible toSeries
as well