Renders a Causal net as graph
render_causal_net(
causal_net,
rankdir = "LR",
layout = "dot",
render = T,
fixed_edge_width = F,
fixed_node_pos = NULL,
...
)
A causal net created by causal_net
Rankdir to be used for DiagrammeR.
Layout to be used for DiagrammeR.
Whether to directly render the DiagrammeR graph or simply return it.
If TRUE, don't vary the width of edges.
When specified as a data.frame with three columns 'act', 'x', and 'y' the position of nodes is fixed. Note that his can only be used with the 'neato' layout engine.
Further parameters forwarded to the DiagrammeR render function.
A DiagrammeR graph of the Causal net.
render_causal_net(causal_net(L_heur_1))