Nothing
size.intact.to.arc <- function(G, arc.node = "in"){
avn <- attributes(E(G))$vnames
df <- data.frame(do.call("rbind",strsplit(avn,"|", fixed = T)))
names(df) <- c("in","out")
crit <- df[,names(df) == arc.node]
out <- 1:length(avn)
for(i in 1:length(avn)){
out[i] <- size.intact.to.node(G, node = crit[i])
}
nnames <- gsub(x = avn,"|"," --> ", fixed = T)
names(out) <- nnames
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.