Description Usage Arguments Value Examples
Loads a Cytoscape JSON as an igraph graph
1 | load_json_graph(jdat)
|
jdat |
a loaded Cytoscape JSON |
an igraph-graph
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
jdat = fromJSON(file = 'xy.json')
g = load_json_graph(jdat)
list.edge.attributes(g)
list.vertex.attributes(g)
plot.igraph(g,
layout=-cbind(V(g)$posx, V(g)$posy),
rescale=T,
edge.arrow.size=0.1,
vertex.size =7,
vertex.label.cex = 0.5)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.