Plot dynamic networks
Usage
plot_static_networks(
network_table,
regulators = NULL,
targets = NULL,
legend_position = "right"
)
Examples
data("example_matrix")
network_table <- inferCSN(example_matrix)
#> ℹ [2025-06-17 13:47:25] Running for <dense matrix>.
#> ℹ [2025-06-17 13:47:25] Checking input parameters.
#> ℹ [2025-06-17 13:47:25] Using L0 sparse regression model.
#> ℹ [2025-06-17 13:47:25] Using 1 core
#> ℹ [2025-06-17 13:47:25] Elapsed 0.15 sec
#> ✔ [2025-06-17 13:47:25] 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"
)