-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
ARROW-17689: [R] Implement dplyr::across() inside group_by() #14122
Conversation
Signed-off-by: SHIMA Tatsuya <[email protected]>
Signed-off-by: SHIMA Tatsuya <[email protected]>
Signed-off-by: SHIMA Tatsuya <[email protected]>
Signed-off-by: SHIMA Tatsuya <[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.
Thanks! Just a few nits. Excited to have this merged!
Signed-off-by: SHIMA Tatsuya <[email protected]>
Signed-off-by: SHIMA Tatsuya <[email protected]>
Signed-off-by: SHIMA Tatsuya <[email protected]>
Thanks for the review, I have changed the |
Signed-off-by: SHIMA Tatsuya <[email protected]>
Signed-off-by: SHIMA Tatsuya <[email protected]>
Signed-off-by: SHIMA Tatsuya <[email protected]>
Further tests were added. |
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.
Thank you...this looks great! I will wait for the CI to turn green (minus the duckdb failures) and then merge. In addition to your followups, there's a number of other across-related tickets if you're ever looking (ARROW-17690 and ARROW-17387 are two that come to mind 🙂 ).
Benchmark runs are scheduled for baseline = 93626ee and contender = 557acf5. 557acf5 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
['Python', 'R'] benchmarks have high level of regressions. |
…14122) Because the handling of the case `.add = TRUE` and the `add` argument have been changed, test cases for these are also added. Authored-by: SHIMA Tatsuya <[email protected]> Signed-off-by: Dewey Dunnington <[email protected]>
…14122) Because the handling of the case `.add = TRUE` and the `add` argument have been changed, test cases for these are also added. Authored-by: SHIMA Tatsuya <[email protected]> Signed-off-by: Dewey Dunnington <[email protected]>
Because the handling of the case
.add = TRUE
and theadd
argument have been changed, test cases for these are also added.