Skip to content

Commit

Permalink
added chunk_ungroup for #217
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaodaigh authored Nov 25, 2019
1 parent b28be65 commit 0eb6f8e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion R/dplyr_verbs.r
Original file line number Diff line number Diff line change
Expand Up @@ -408,10 +408,16 @@ group_by.disk.frame <- create_dplyr_mapper(dplyr::group_by, warning_msg="`group_
#stop("`arrange.disk.frame` has been removed. Please use `chunk_arrange` instead. This is preparation for a more powerful `group_by` framework")
#}

#' @rdname group_by
#' @export
chunk_group_by <- create_dplyr_mapper(dplyr::group_by)

#' @rdname group_by
chunk_group_by <- create_dplyr_mapper(dplyr::group_by)
#' @export
chunk_ungroup = create_dplyr_mapper(dplyr::ungroup)

# do not introduce it as it was never introduced
#ungroup.disk.frame( < - create_dplyr_mapper(dplyr::ungroup, , warning_msg="`ungroup.disk.frame` is now deprecated. Please use `chunk_ungroup` instead. This is in preparation for a more powerful `group_by` framework")

#' @export
#' @rdname dplyr_verbs
Expand Down

0 comments on commit 0eb6f8e

Please sign in to comment.