Description Usage Arguments Value
A function to produce an “igraph” object with the “nodelist” and “edgelist”, which could be returned by the function readshpnw.
1 2 3 4 5 6 7 | nodedge_list2igraph(
nodelist,
edgelist,
weight = NULL,
eadf = NULL,
Directed = FALSE
)
|
nodelist |
A “nodelist” object |
edgelist |
An “edgelist” object |
weight |
A numberic vector to weight all the edges in the “edgelist”, of which the length equals to the number of edges; |
eadf |
A data frame of attributes corresponding to all the edges; |
Directed |
TRUE if edges are directed, FALSE otherwise; |
1. The weighting vector, “weight”, will be used as default for any weigted calculations with edges in the “igraph” object. 2. The coordinate of each node is attached as attributes “X” and “Y”, which could be retrived via the function “get.vertex.attribute” from the package igraph.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.