Nothing
generateExprMatrix <- function(sigmaThetaExpr) {
T <- sqrt(length(sigmaThetaExpr$expr))
exprMatrix <- matrix(as.character(unlist(sigmaThetaExpr$expr)), nrow = T, ncol = T)
rownames(exprMatrix) <- paste0("T", seq(T))
colnames(exprMatrix) <- paste0("T", seq(T))
return(exprMatrix)
}
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.