Nothing
## function to compute the shortest path
'adj.get.hops' <-
function(adjmat) {
#require(RBGL)
hops <- RBGL::floyd.warshall.all.pairs.sp(as(adjmat,"graphNEL"))
#dimnames(hops) <- dimnames(adjmat)
hops[abs(hops) == Inf] <- NA
return(hops)
}
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.