R/ungroup.R

Defines functions ungroup.tidyee

#' @export
ungroup.tidyee <- function(x,...){
  vrt <- x$vrt |>
    dplyr::ungroup(...)
  create_tidyee(x$ee_ob,vrt)
}
#' ungroup
#' @name ungroup
#' @rdname ungroup
#' @param x tidyee object
#' @param ... ungroup args
#' @return tidyee class object with vrt ungrouped.
#' @seealso \code{\link[dplyr]{ungroup}} for information about ungroup on normal data tables.
#' @export
#' @importFrom dplyr ungroup
NULL

Try the tidyrgee package in your browser

Any scripts or data that you put into this service are public.

tidyrgee documentation built on Sept. 15, 2022, 9:07 a.m.