Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
DominiqueMakowski committed Mar 5, 2022
1 parent 95127e9 commit 4e674e5
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 12 deletions.
4 changes: 2 additions & 2 deletions R/data_extract.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#' Extract a single column or element from an object
#'
#' `extract()` is similar to `$`. It extracts a single column or element from an object
#' (e.g., a data frame, list, )
#' `data_extract()` (or its alias `extract()`) is similar to `$`. It extracts a single column or element from an object
#' (e.g., a data frame, list, ).
#'
#' @param data The object to subset. Methods are currently available for data frames
#' and data frame extensions (e.g., tibbles).
Expand Down
2 changes: 1 addition & 1 deletion R/data_rename.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#' - Functions to reorder, find and remove columns: [data_findcols()], [data_reorder()], [data_remove()]
#' - Functions to reshape, pivot or rotate dataframes: [data_to_long()], [data_to_wide()], [data_rotate()]
#' - Functions to rescale and reverse: [data_rescale()], [data_reverse()]
#' - Functions to standardize, normalize, rank-transform: [standardize()], [normalize()], [ranktransform()]
#' - Functions to standardize, normalize, rank-transform: [standardize()], [normalize()], [ranktransform()], [winsorize()]
#' - Split, cut and merge dataframes: [data_partition()], [data_cut()], [data_match()], [data_merge()]
#'
#' @export
Expand Down
1 change: 1 addition & 0 deletions R/winsorize.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#' @examples
#' winsorize(iris$Sepal.Length, threshold = 0.2)
#' winsorize(iris, threshold = 0.2)
#' @inherit data_rename seealso
#' @export
winsorize <- function(data, ...) {
UseMethod("winsorize")
Expand Down
4 changes: 2 additions & 2 deletions man/data_extract.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.

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_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_reorder.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.

10 changes: 10 additions & 0 deletions man/winsorize.Rd

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

0 comments on commit 4e674e5

Please sign in to comment.