Nothing
reverseEdgeDirections <- function(g) {
## FIXME: This needs to fix edge attributes, but for now, we punt
## and we are only using node attrs here anyhow...
gam <- as(g, "graphAM")
nodeNames <- nodes(g)
gam@adjMat <- t(gam@adjMat)
colnames(gam@adjMat) <- nodeNames
as(gam, "graphNEL")
}
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.