View source: R/network_visualization.R
plot_static_networks | R Documentation |
Plot dynamic networks
plot_static_networks(
network_table,
regulators = NULL,
targets = NULL,
legend_position = "right"
)
network_table |
The weight data table of network. |
regulators |
Regulators list. |
targets |
Targets list. |
legend_position |
The position of legend. |
A ggplot2 object
data("example_matrix")
network_table <- inferCSN(example_matrix)
plot_static_networks(
network_table,
regulators = network_table[1, 1]
)
plot_static_networks(
network_table,
targets = network_table[1, 1]
)
plot_static_networks(
network_table,
regulators = network_table[1, 1],
targets = network_table[1, 2]
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.