#' Returns coefficients of variations for columns/ proteins
#'
#' @param data expression data
#'
#' @return
#' @export
#'
#'
cv <- function(data) {
apply(data, 2, FUN = function(x) {sd(x) / mean(x)})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.