#' Sanitize percentage
#'
#' Take a `character` vector of percentages (e.g. `"50%"`) and convert it to a
#' `numeric` vector (e.g. `0.5`).
#'
#' @section Intended usage:
#'
#' This function is designed primarily to sanitize data imported from Microsoft
#' Excel.
#'
#' @export
#' @inheritParams AcidRoxygen::params
#'
#' @return Modified object.
#' All percentage strings containing `"%"` (e.g. `"50%"`) are converted to
#' numeric proportions (e.g. `0.5`).
#'
#' @examples
#' showMethods("sanitizePercent")
setGeneric(
name = "sanitizePercent",
def = function(object, ...) {
standardGeneric("sanitizePercent")
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.