#'
#' Calculate the coefficient of variation
#'
#' @param x a numeric vector
#' @examples
#' x <- rnorm(100)
#' coef_var(x)
#' @export
coef_var <- function(x){
sd(x) / mean(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.