Nothing
#' Add variable name prefix (with substitution)
#'
#' This function strips the old prefix from the variable names of the dataframe.
#' It then adds the new prefix where the old one was and changes the dataframe's names to the new ones.
#'
#' @param dataframe A dataframe
#' @param pref_old Old prefix character that some or all variables in the dataframe have
#' @param pref_new New prefix character to replace the old one
#'
#' @return Returns dataframe with those variables renamed that start with the old prefix.
#' @export
#'
#' @examples
#' bla <- tibble::tibble(x_ar = 1:5, y_ar = 6:10)
#' blo <- namepref(bla, "x_", "z_")
#' names(bla)
#' names(blo)
#'
namepref <- function(dataframe, pref_old, pref_new){
value <- stripped <- new_names <- NULL
namedf <- data.frame(value = names(dataframe))
namedf$stripped <- ifelse(startsWith(namedf$value, pref_old),
substr(namedf$value, (nchar(pref_old)+1), nchar(namedf$value)),
namedf$value)
namedf$new_names <- ifelse(startsWith(namedf$value, pref_old),
paste0(pref_new, namedf$stripped),
namedf$value)
names(dataframe) <- namedf$new_names
# pref_old and pref_new must be character strings, dataframe must be a dataframe
# namedf <- tibble::as_tibble(names(dataframe)) |>
# dplyr::mutate(stripped = ifelse(startsWith(value, pref_old),
# substr(value, (nchar(pref_old)+1), nchar(value)),
# value),
# new_names = ifelse(startsWith(value, pref_old),
# paste0(pref_new, stripped),
# value))
#
# names(dataframe) <- namedf |> dplyr::pull(new_names)
return(dataframe)
}
#' Add variable name prefix (without substitution)
#'
#' This function adds the new prefix and changes the dataframe's names to the new ones.
#'
#' @param dataframe A dataframe
#' @param pref_new New prefix character to add to all variable namess in the dataframe have
#'
#' @return Returns dataframe with all variables renamed to start with the new prefix.
#' @export
#'
#' @examples
#' bla <- tibble::tibble(x_ar = 1:5, y_ar = 6:10)
#' blo <- namepref0(bla, "var")
#' names(bla)
#' names(blo)
#'
namepref0 <- function(dataframe, pref_new){
value <- new_names <- NULL
# pref_new must be a character string, dataframe must be a dataframe
namedf <- data.frame(value = names(dataframe))
namedf$new_names <- paste0(pref_new, namedf$value)
names(dataframe) <- namedf$new_names
return(dataframe)
}
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.