Skip to content

Commit

Permalink
do not remove find_columns yet
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennebacher committed May 18, 2024
1 parent 9ba036f commit d7f40fe
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ export(distribution_mode)
export(empty_columns)
export(empty_rows)
export(extract_column_names)
export(find_columns)
export(format_text)
export(get_columns)
export(kurtosis)
Expand Down
4 changes: 4 additions & 0 deletions R/extract_column_names.R
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,7 @@ data_find <- function(data,
...
)
}

#' @rdname extract_column_names
#' @export
find_columns <- data_find
6 changes: 5 additions & 1 deletion R/means_by_group.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
#' @param digits Optional scalar, indicating the amount of digits after decimal
#' point when rounding estimates and values.
#' @param ... Currently not used
#' @param group Deprecated. Use `by` instead.
#' @param group If `x` is a numeric vector, `group` should be a factor that
#' indicates the group-classifying categories. If `x` is a data frame, `group`
#' should be a character string, naming the variable in `x` that is used for
#' grouping. Numeric vectors are coerced to factors. Not that `group` should
#' only refer to a single variable.
#' @inheritParams find_columns
#'
#' @return A data frame with information on mean and further summary statistics
Expand Down
11 changes: 11 additions & 0 deletions man/extract_column_names.Rd

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

0 comments on commit d7f40fe

Please sign in to comment.