-
Notifications
You must be signed in to change notification settings - Fork 908
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 update() function #6883
Conversation
Please update the changelog in order to start CI tests. View the gpuCI docs here. |
Codecov Report
@@ Coverage Diff @@
## branch-0.18 #6883 +/- ##
===============================================
+ Coverage 82.09% 82.16% +0.06%
===============================================
Files 97 97
Lines 16474 16571 +97
===============================================
+ Hits 13524 13615 +91
- Misses 2950 2956 +6
Continue to review full report at Codecov.
|
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.
What @isVoid said + Could you also mentioned some clear description in your PR about the changes you are making? This is required as the merge-bot would use whatever you provide in PR description in the commit message.
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.
This is good to go 🎉 , good job @skirui-source !
@isVoid Could you also have a look at this PR as you requested changes, I think your concerns have been addressed. |
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.
Yep! It looks great! Awesome work!
@gpucibot merge |
Resolves: #5543
This PR adds support for updating a DataFrame with non-NA values from another DataFrame, whereby only the values at matching index/column labels are updated. Only left join is supported, keeping the index and columns of original DataFrame.