#' Grouping metadata
#'
#' @description
#' This collection of functions accesses data about grouped data frames in
#' various ways:
#'
#' * `group_data()` returns a data frame that defines the grouping structure.
#' The columns give the values of the grouping variables. The last column,
#' always called `.rows`, is a list of integer vectors that gives the
#' location of the rows in each group.
#'
#' * `group_keys()` returns a data frame describing the groups.
#'
#' * `group_rows()` returns a list of integer vectors giving the rows that
#' each group contains.
#'
#' * `group_indices()` returns an integer vector the same length as `.data`
#' that gives the group that each row belongs to.
#'
#' * `group_vars()` gives names of grouping variables as character vector.
#'
#' * `groups()` gives the names of the grouping variables as a list of symbols.
#'
#' * `group_size()` gives the size of each group.
#'
#' * `n_groups()` gives the total number of groups.
#'
#' See [context] for equivalent functions that return values for the _current_
#' group.
#' @param .data,.tbl,x A data frame or extension (like a tibble or grouped
#' tibble).
#' @param ... Use of `...` is now deprecated; please use `group_by()` first
#' instead.
#' @keywords internal
#' @examples
#' df <- tibble(x = c(1,1,2,2))
#' group_vars(df)
#' group_rows(df)
#' group_data(df)
#' group_indices(df)
#'
#' gf <- group_by(df, x)
#' group_vars(gf)
#' group_rows(gf)
#' group_data(gf)
#' group_indices(gf)
#' @export
group_data <- function(.data) {
UseMethod("group_data")
}
#' @export
group_data.data.frame <- function(.data) {
size <- nrow(.data)
out <- seq_len(size)
out <- new_list_of(list(out), ptype = integer())
out <- list(.rows = out)
out <- new_data_frame(out, n = 1L)
out
}
#' @export
group_data.tbl_df <- function(.data) {
out <- NextMethod()
out <- dplyr_new_tibble(out, size = 1L)
out
}
#' @export
group_data.rowwise_df <- function(.data) {
attr(.data, "groups")
}
#' @export
group_data.grouped_df <- function(.data) {
error_call <- current_env()
withCallingHandlers(
validate_grouped_df(.data),
error = function(cnd) {
msg <- glue("`.data` must be a valid <grouped_df> object.")
abort(msg, parent = cnd, call = error_call)
}
)
attr(.data, "groups")
}
# -------------------------------------------------------------------------
#' @rdname group_data
#' @export
group_keys <- function(.tbl, ...) {
UseMethod("group_keys")
}
#' @export
group_keys.data.frame <- function(.tbl, ...) {
if (dots_n(...) > 0) {
lifecycle::deprecate_warn(
"1.0.0", "group_keys(... = )",
details = "Please `group_by()` first",
always = TRUE
)
.tbl <- group_by(.tbl, ...)
}
out <- group_data(.tbl)
group_keys0(out)
}
group_keys0 <- function(x) {
# Compute keys directly from `group_data()` results
.Call(`dplyr_group_keys`, x)
}
#' @rdname group_data
#' @export
group_rows <- function(.data) {
group_data(.data)[[".rows"]]
}
#' @export
#' @rdname group_data
group_indices <- function(.data, ...) {
if (nargs() == 0) {
lifecycle::deprecate_warn("1.0.0", "group_indices()", "cur_group_id()", always = TRUE)
return(cur_group_id())
}
UseMethod("group_indices")
}
#' @export
group_indices.data.frame <- function(.data, ...) {
if (dots_n(...) > 0) {
lifecycle::deprecate_warn(
"1.0.0", "group_indices(... = )",
details = "Please `group_by()` first",
always = TRUE
)
.data <- group_by(.data, ...)
}
.Call(`dplyr_group_indices`, .data, group_rows(.data))
}
#' @export
#' @rdname group_data
group_vars <- function(x) {
UseMethod("group_vars")
}
#' @export
group_vars.data.frame <- function(x) {
setdiff(names(group_data(x)), ".rows")
}
#' @export
#' @rdname group_data
groups <- function(x) {
UseMethod("groups")
}
#' @export
groups.data.frame <- function(x) {
syms(group_vars(x))
}
#' @export
#' @rdname group_data
group_size <- function(x) UseMethod("group_size")
#' @export
group_size.data.frame <- function(x) {
lengths(group_rows(x))
}
#' @export
#' @rdname group_data
n_groups <- function(x) UseMethod("n_groups")
#' @export
n_groups.data.frame <- function(x) {
nrow(group_data(x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.