Skip to content

Commit

Permalink
other remnants
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennebacher committed May 18, 2024
1 parent e484ee0 commit 0274388
Show file tree
Hide file tree
Showing 17 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions R/data_modify.R
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@
#' .modify = round
#' )
#'
#' # combine "extract_column_names()" and ".at" argument
#' # combine "data_find()" and ".at" argument
#' out <- data_modify(
#' d,
#' .at = extract_column_names(d, select = starts_with("Sepal")),
#' .at = data_find(d, select = starts_with("Sepal")),
#' .modify = as.factor
#' )
#' # "Sepal.Length" and "Sepal.Width" are now factors
Expand Down
2 changes: 1 addition & 1 deletion R/data_rename.R
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#' - Functions to recode data: [rescale()], [reverse()], [categorize()], [recode_values()], [slide()]
#' - Functions to standardize, normalize, rank-transform: [center()], [standardize()], [normalize()], [ranktransform()], [winsorize()]
#' - Split and merge data frames: [data_partition()], [data_merge()]
#' - Functions to find or select columns: [data_select()], [extract_column_names()]
#' - Functions to find or select columns: [data_select()], [data_find()]
#' - Functions to filter rows: [data_match()], [data_filter()]
#'
#' @export
Expand Down
2 changes: 1 addition & 1 deletion R/select_nse.R
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@

# 3 types of symbols:
# - unquoted variables
# - objects that need to be evaluated, e.g extract_column_names(iris, i) where
# - objects that need to be evaluated, e.g data_find(iris, i) where
# i is a
# function arg or is defined before. This can also be a vector of names or
# positions.
Expand Down
2 changes: 1 addition & 1 deletion man/categorize.Rd

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

2 changes: 1 addition & 1 deletion man/data_match.Rd

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

2 changes: 1 addition & 1 deletion man/data_merge.Rd

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

4 changes: 2 additions & 2 deletions man/data_modify.Rd

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

2 changes: 1 addition & 1 deletion man/data_partition.Rd

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

2 changes: 1 addition & 1 deletion man/data_relocate.Rd

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

2 changes: 1 addition & 1 deletion man/data_rename.Rd

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

2 changes: 1 addition & 1 deletion man/data_rotate.Rd

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

2 changes: 1 addition & 1 deletion man/data_to_long.Rd

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

2 changes: 1 addition & 1 deletion man/data_to_wide.Rd

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

2 changes: 1 addition & 1 deletion man/find_columns.Rd

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

2 changes: 1 addition & 1 deletion man/recode_values.Rd

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

2 changes: 1 addition & 1 deletion man/slide.Rd

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

2 changes: 1 addition & 1 deletion man/winsorize.Rd

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

0 comments on commit 0274388

Please sign in to comment.