from_igraph {DiagrammeR} | R Documentation |
Convert an igraph graph to a DiagrammeR graph object.
from_igraph(igraph, graph_name = NULL, write_backups = FALSE)
igraph |
an igraph graph object. |
graph_name |
an optional string for labeling the graph object. |
write_backups |
an option to write incremental
backups of changing graph states to disk. If
|
a graph object of class dgr_graph
.
# Create a DiagrammeR graph object dgr_graph_orig <- create_random_graph( n = 36, m = 50, set_seed = 23, directed = TRUE) # Convert the DiagrammeR graph to an # igraph object ig_graph <- to_igraph(dgr_graph_orig) # Convert the igraph graph back to a # DiagrammeR graph dgr_graph_new <- from_igraph(ig_graph) # Get some graph information graph_info(dgr_graph_new)[, 1:6] #> name n e dens mn_deg mx_deg #> 1 graph_eUrgZI3e 36 50 0.0571 1 6