R/list_colnames.R

Defines functions list_colnames

Documented in list_colnames

#' List all the colnames in alphabetical order as a tibble
#'
#' @param df
#'
#' @return printed tibble in console of colnames
#' @export
#'
#' @examples
list_colnames <- function(df){
  print(enframe(sort(colnames(df)), name = NULL), n=Inf)
}
fluentin44/epicR documentation built on June 29, 2022, 6:39 a.m.