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