The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
Plotting functionality makes use of the Sugiyama layout from igraph which plots nodes to reflect their position in a causal ordering.
The plot
method calls plot_model
and passes
provided arguments to it.
The model that is produced is a ggplot
object and
additional layers can be added in the usual way.
model |>
plot_model() +
annotate("text", x = c(1, -1) , y = c(1.5, 1.5), label = c("Some text", "Some more text")) +
coord_flip()
Provide labels in the same order as model nodes.
model <- make_model("A -> B -> C <- A")
# Check node ordering
inspect(model, "nodes")
#>
#> Nodes:
#> A, B, C
# Provide labels
model |>
plot_model(
labels = c("This is A", "Here is B", "And C"),
nodecol = "white", textcol = "black")
You can manually set positions using the x_coord
and
y_coord
arguments.
You can manually set positions using the x_coord
and
y_coord
arguments.
You can manually control node color and text color for all nodes together or separately.
model |>
plot(x_coord = 0:2, y_coord = c(0, 2, 1),
nodecol = c("blue", "orange", "red"),
textcol = c("white", "red", "blue"))
Unobserved confounding is represented using dashed curves.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.