Nothing
#' @title Rename column in data.frame
#' @description Rename one or more columns in the data.frame.
#' @param .data data.frame
#' @param ... statements of rename, e.g. `sl = Sepal.Length` means the column named
#' as "Sepal.Length" would be renamed to "sl"
#' @param .fn A function used to transform the selected columns.
#' Should return a character vector the same length as the input.
#' @return data.table
#' @seealso \code{\link[dplyr]{rename}}
#' @examples
#' iris %>%
#' rename_dt(sl = Sepal.Length,sw = Sepal.Width) %>%
#' head()
#' iris %>% rename_with_dt(toupper)
#' iris %>% rename_with_dt(toupper,"^Pe")
#'
#' @rdname rename_dt
#' @export
rename_dt = function(.data,...){
dt = as.data.table(.data)
substitute(list(...)) %>%
lapply(deparse) %>%
.[-1] -> dot_string
new_names = names(dot_string)
old_names = as.character(dot_string)
setnames(dt,old = old_names,new = new_names)[]
}
#' @rdname rename_dt
#' @export
rename_with_dt = function(.data,.fn,...){
dt = as.data.table(.data)
dt[0] %>% select_dt(...) %>% names() -> old_names
.fn -> new_names
setnames(dt,old = old_names,new = new_names)[]
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.