Nothing
from_igraph <- function(net) {
if (!is(net,"igraph")) {
stop("net must be an object of class igraph.")
}
graph <- matrix(as.numeric(as.matrix(as_data_frame(net))), ncol = 3)
if (is_directed(net))
type <- "directed"
else type <- "undirected"
result <- list(graph = graph, type = type, PA = NULL, fitness = NULL)
class(result) <- "PAFit_net"
return(result)
}
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.