Description Usage Arguments Value Examples
View source: R/GeneTonic-extras.R
Export a graph to a Simple Interaction Format file
1 | export_to_sif(g, sif_file = "", edge_label = "relates_to")
|
g |
An |
sif_file |
Character string, the path to the file where to save the exported graph as .sif file |
edge_label |
Character string, defining the name of the interaction type. Defaults here to "relates_to" |
Returns the path to the exported file, invisibly
1 2 3 4 | library("igraph")
g <- make_full_graph(5) %du% make_full_graph(5) %du% make_full_graph(5)
g <- add_edges(g, c(1,6, 1,11, 6, 11))
export_to_sif(g, tempfile())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.