Nothing
randomize <- function(network){
random <- matrix(sample(network), nrow = nrow(network))
ndiag <- sum(diag(random))
diag(random) <- -1
random[sample(which(random == 0), replace = FALSE, size = ndiag)] <- 1
diag(random) <- 0
return(random)
}
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.