Nothing
#' get_lower_tri_noDiag
#' @description
#' create a lower triangle of the matrix without the diagonal
#'
#'
#' @param cormat matrix
#' @keywords internal
#'
get_lower_tri_noDiag <- function(cormat){
cormat[upper.tri(cormat)] <- NA
diag(cormat) <- NA
return(cormat)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.