Nothing
create.modMatrix <- function(RAM, output=c("A", "S"), mod) {
output <- match.arg(output)
switch(output,
A = { out <- RAM$A
out[grep("\\*", out)] <- paste0("0*data.", mod)},
S = { out <- RAM$S
out[grep("\\*", out)] <- paste0("0*data.", mod)
Diag(out) <- "0"})
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.