-
-
Notifications
You must be signed in to change notification settings - Fork 40
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
Add support for dplyr ungroup() #217
Comments
Thanks for the report. The implementation is as follow :), and has been added here. If you use the latest master and chunk_ungroup = create_dplyr_mapper(dplyr::ungroup) At some point, I will write an article explaining how |
iris %>%
as.disk.frame(nchunks = 2) %>%
chunk_group_by(Species) %>%
chunk_ungroup %>%
collect this seems to work in the latest "development" branch |
With the support for |
Would it be possible to add support for the dplyr verb
ungroup()
? When using the verbgroup_by()
it is often a best practice to explicitly callungroup()
after, but it looks likeungroup()
is not currently implemented in disk.frame. Thanks!The text was updated successfully, but these errors were encountered: