#' makeComp
#'
#' This function calculates the observed composition from raw counts
#'
#' @param W raw count matrix, with OTUs as columns
#'
#' @export
makeComp <- function(W) {
return(W/rowSums(W))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.