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)
#> ℹ [2025-07-28 09:33:38] Running for <dense matrix>.
#> ℹ [2025-07-28 09:33:38] Checking input parameters.
#> ℹ [2025-07-28 09:33:38] Using L0 sparse regression model.
#> ℹ [2025-07-28 09:33:38] Using 1 core
#> ⠙ [2025-07-28 09:33:38] Running [1/18] ETA: 0s
#> ✔ [2025-07-28 09:33:38] Completed 18 tasks in 194ms
#>
#> ℹ [2025-07-28 09:33:38] Building results
#> ✔ [2025-07-28 09:33:38] 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"
)