Plot dynamic networks
plot_static_networks(
network_table,
regulators = NULL,
targets = NULL,
legend_position = "right"
)
A ggplot2 object
data("example_matrix")
network_table <- inferCSN(example_matrix)
#> ✔ Running for <dense matrix>.
#> ✔ Checking input parameters.
#> ✔ Using L0 sparse regression model.
#> ✔ Using 1 core.
#> ✔ Run done.
plot_static_networks(
network_table,
regulators = "g1"
)
plot_static_networks(
network_table,
targets = "g1"
)
plot_static_networks(
network_table,
regulators = "g1",
targets = "g2"
)