#' Last to First
#'
#' @description Make the last column the first column in a dataframe
#' @param df dataframe
#' @keywords helper
#' @export
last_to_first <- function(df) {
df[, c(ncol(df), 1:ncol(df) - 1)]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.