Convert graph to dot format

write_dot(
  graph,
  outfile = stdout(),
  size1 = 7.5,
  size2 = 10,
  title = "",
  dot2pdf = FALSE
)

Arguments

graph

Graph as igraph object or edge list (columns labelled 'from', 'to', 'weight')

outfile

Output file name

Examples

if (FALSE) {
results = qpgraph(example_f2_blocks, example_graph)
write_dot(results$edges)
}