#' Format height coloumn
#' @description Changes name of column to height
#' @param df dataframe modified in make_data_format
#' @importFrom dplyr mutate
#' @export
format_height <- function(df) {
cli::cli_alert("Formatting height...")
df %>%
dplyr::mutate(height = admissionheight)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.