write.graph {igraph} | R Documentation |
Writing the graph to a file in some format
Description
write.graph()
was renamed to write_graph()
to create a more
consistent API.
Usage
write.graph(
graph,
file,
format = c("edgelist", "pajek", "ncol", "lgl", "graphml", "dimacs", "gml", "dot",
"leda"),
...
)
Arguments
graph |
The graph to export. |
file |
A connection or a string giving the file name to write the graph to. |
format |
Character string giving the file format. Right now
|
... |
Other, format specific arguments, see below. |
[Package igraph version 2.0.3 Index]