network_format | R Documentation |
Format network table
network_format(
network_table,
regulators = NULL,
targets = NULL,
abs_weight = TRUE
)
network_table |
The weight data table of network. |
regulators |
Regulators list. |
targets |
Targets list. |
abs_weight |
Logical value, default is |
Formated network table
data("example_matrix")
network_table <- inferCSN(example_matrix)
network_format(
network_table,
regulators = c("g1")
)
network_format(
network_table,
regulators = c("g1"),
abs_weight = FALSE
)
network_format(
network_table,
targets = c("g3")
)
network_format(
network_table,
regulators = c("g1", "g3"),
targets = c("g3", "g5")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.