#' Returns mean absolute correlation coefficient
#'
#' @param data symmetric correlation matrix
#'
#' @return
#' @export
#'
#'
meanAbsCor <- function(data) {
mean(abs(data[lower.tri(data)]))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.