graph.data.frame {igraph} | R Documentation |
Creating igraph graphs from data frames or vice-versa
Description
graph.data.frame()
was renamed to graph_from_data_frame()
to create a more
consistent API.
Usage
graph.data.frame(d, directed = TRUE, vertices = NULL)
Arguments
d |
A data frame containing a symbolic edge list in the first two
columns. Additional columns are considered as edge attributes. Since
version 0.7 this argument is coerced to a data frame with
|
directed |
Logical scalar, whether or not to create a directed graph. |
vertices |
A data frame with vertex metadata, or |
[Package igraph version 2.0.3 Index]