Nothing
#' Computes vector form of connection sign matrix for storage purposes
#'
#' @param MAT A matrix of connection signs that contains -1, 1 or 0
#' @return vec.out Vectorized MAT matrix
get.signs.M <- function(MAT) {
vec.out <- cbind(which(MAT!=0, arr.ind = T),as.matrix(MAT[which(MAT!=0, arr.ind = T)]))
return(vec.out)
}
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.