#' Calculates coefficient of variation
#'
#' @param data data matrix
#'
#' @return
#' @export
#'
#'
cv_m <- function(data) {
#
cvs <- apply(X = data,
MARGIN = 2,
FUN = cv)
# Return
return(cvs)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.