#' Removes columns/proteins based on standard deviation
#'
#' @param data expression data
#'
#' @return
#' @export
#'
#'
cmsd <- function(data) {
v <- apply(data, 2, function(x) {sd(x) != 0})
data[, v]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.