dot: Export dominance graph into Graphviz dot format

View source: R/graph.R

dotR Documentation

Export dominance graph into Graphviz dot format

Description

Produces a string vector with the dot code that can be used to plot dominance graph with Graphviz or transfer topology to other software.

Usage

dot(x, con, ..., reduce = TRUE)

Arguments

x

a toporanga_graph to be exported.

con

if given, code is pushed to the given connection instead of returned; this can simply be a file name.

...

ignored.

reduce

if TRUE, a transitive reduction is applied to the graph, making it retain the order topology but removing all redundant edges.

Value

Graphviz dot code of the graph, invisibly when con is given.


toporanga documentation built on Aug. 8, 2025, 6:15 p.m.

Related to dot in toporanga...