ianmcook commented on PR #33917: URL: https://github.com/apache/arrow/pull/33917#issuecomment-1408812095
I'm seeing an ~8% speed improvement when I run this locally on my Intel Mac: ```r library(arrow) library(dplyr) library(tictoc) z <- arrow_table(z = seq_len(4e9)) tic() z %>% summarize(n()) %>% collect() toc() ``` I am having trouble getting the package to build with Dataset so that's about the largest data I can test on at the moment. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
