Nothing
adja_gnp <- function(N, alpha, directed = FALSE) {
gra <- igraph::sample_gnp(N, p = alpha * N^(-0.3), directed = directed, loops = FALSE)
A <- igraph::as_adjacency_matrix(gra, sparse = FALSE)
w <- A / Rfast::rowsums(A)
w[ is.na(w) ] <- 0
w
}
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.