Skip to content

Commit

Permalink
Document that group_by() works with data-masking (#7071)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmercadeb authored Aug 27, 2024
1 parent e055527 commit 85e94fc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions R/group-by.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
#'
#' @family grouping functions
#' @inheritParams arrange
#' @param ... In `group_by()`, variables or computations to group by.
#' Computations are always done on the ungrouped data frame.
#' To perform computations on the grouped data, you need to use
#' a separate `mutate()` step before the `group_by()`.
#' @param ... <[`data-masking`][rlang::args_data_masking]> In `group_by()`,
#' variables or computations to group by. Computations are always done on the
#' ungrouped data frame. To perform computations on the grouped data, you need
#' to use a separate `mutate()` step before the `group_by()`.
#' Computations are not allowed in `nest_by()`.
#' In `ungroup()`, variables to remove from the grouping.
#' @param .add When `FALSE`, the default, `group_by()` will
Expand Down
8 changes: 4 additions & 4 deletions man/group_by.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions man/nest_by.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 85e94fc

Please sign in to comment.