edge.list | R Documentation |
Generates two data frames (nodes and edges) from a list of edges
edge.list(x)
x |
A matrix or data frame structured as a list of edges |
edge.list
transforms the input into a two-elements list containing a
dataframe of nodes (with columns “id” and “label”) and a
dataframe of edges. The last one is numeric (with columns “source”
and “target”) and based on auto-generated nodes' ids.
A list containing two data frames.
George Vega Yon
Jorge Fabrega Lacoa
edgelist <- matrix(
c("matthew","john",
"max","stephen",
"matthew","stephen"),
byrow=TRUE, ncol=2)
edge.list(edgelist)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.