#' get unit info
#'
#' @param data dataset to extract unit info from
#' @param .names a character vector containing names that have unit class.
#'
#' @return a list with unit info
#'
#' @noRd
unit_info <- function(data, .names){
 out <- list()
 if(is_empty(.names)) return(out)
 for(i in .names){
  u <- attr(data[[i]], 'units')
  if(inherits(u, 'symbolic_units')){
   n <- u$numerator
   d <- u$denominator
   l <- paste(n)
   if(!is_empty(d)) l <- paste0(l ,'/', d)
   out[[i]] <- list(numerator = n,
                    denominator = d,
                    label = l)
  } else {
   if(!is.null(u))
    stop("variable ", i, " has units attributes but they do not",
         " inherit from 'symbolic_units' class in the units package.",
         " Please install the units package and use it to manage",
         " units for analyses with the aorsf package that require",
         " units.", call. = FALSE)
  }
 }
 out
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.