R/sortnames.R

Defines functions sortnames

#' display sorted column names for a dataframe
#'
#' @param df dataframe whose colnames you want to see sorted
#' @export

sortnames <- function(df){
nm <- sort(names(df))
nm
}
johnfrye/fryeutilities documentation built on March 30, 2020, 5:27 p.m.