export_csv {DiagrammeR} | R Documentation |
Export a graph to CSV files.
export_csv(graph, ndf_name = "nodes.csv", edf_name = "edges.csv", output_path = getwd(), colnames_type = NULL)
graph |
a graph object. |
ndf_name |
the name to provide to the CSV file
containing node information. By default this CSV
will be called |
edf_name |
the name to provide to the CSV file
containing edge information. By default this CSV
will be called |
output_path |
the path to which the CSV files will be placed. By default, this is the current working directory. |
colnames_type |
provides options to modify
CSV column names to allow for easier import into
other graph systems. The |
library(magrittr) # Create a node data frame (ndf) nodes <- create_nodes( nodes = c("a", "b", "c", "d"), type = c("A", "A", "Z", "Z"), label = TRUE, value = c(3.5, 2.6, 9.4, 2.7)) # Create an edge data frame (edf) edges <- create_edges( from = c("a", "b", "c"), to = c("d", "c", "a"), rel = c("A", "Z", "A")) # Create a graph with the ndf and edf graph <- create_graph(nodes_df = nodes, edges_df = edges) # Create separate `nodes.csv` and `edges.csv` # files in the working directory graph %>% export_csv