#' @title
#' Remove units from object
#'
#' @description
#' \code{strip_units} facilitates logical comparisons and other generic operators by stripping units from an object but otherwise leaving it unchanged
#'
#' @export
strip_units = function(x){
if("units" %in% class(x)) units(x) = NULL
return(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.