Skip to content
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

ungroup(lf, x) should only remove x from group #689

Closed
mgirlich opened this issue Aug 16, 2021 · 0 comments · Fixed by #690
Closed

ungroup(lf, x) should only remove x from group #689

mgirlich opened this issue Aug 16, 2021 · 0 comments · Fixed by #690

Comments

@mgirlich
Copy link
Collaborator

Instead of only removing x from the groups it removes all grouping

library(dplyr, warn.conflicts = FALSE)
library(dbplyr)
#> 
#> Attaching package: 'dbplyr'
#> The following objects are masked from 'package:dplyr':
#> 
#>     ident, sql

lazy_frame(x = 1, y = 2) %>% 
  group_by(x, y) %>% 
  ungroup(x) %>% 
  group_vars()
#> character(0)

Created on 2021-08-16 by the reprex package (v2.0.1)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant