agwrite {Rgraphviz} | R Documentation |
This function will take a Ragraph
object and write it out in
DOT format to a file.
agwrite(graph, filename)
graph |
An object of class Ragraph |
filename |
The output filename |
This function is a wrapper to the agwrite() call in Graphviz.
Jeff Gentry
V <- letters[1:10] M <- 1:4 g1 <- randomGraph(V, M, .2) z <- agopen(g1,"foo",layout=FALSE) agwrite(z,tempfile())