as_edgelist | R Documentation |
Sometimes it is useful to work with a standard representation of a graph, like an edge list.
as_edgelist(graph, names = TRUE)
graph |
The graph to convert. |
names |
Whether to return a character matrix containing vertex
names (i.e. the |
as_edgelist()
returns the list of edges in a graph.
A ecount(graph)
by 2 numeric matrix.
graph_from_adjacency_matrix()
, read_graph()
Other conversion:
as.matrix.igraph()
,
as_adj_list()
,
as_adjacency_matrix()
,
as_biadjacency_matrix()
,
as_data_frame()
,
as_directed()
,
as_graphnel()
,
as_long_data_frame()
,
graph_from_adj_list()
,
graph_from_graphnel()
g <- sample_gnp(10, 2 / 10)
as_edgelist(g)
V(g)$name <- LETTERS[seq_len(gorder(g))]
as_edgelist(g)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.