View source: R/class-network.R
| set_nodes | R Documentation |
Replaces the nodes data frame in a cograph_network object.
set_nodes(x, nodes_df)
x |
A cograph_network object. |
nodes_df |
A data frame with node information (id, label columns expected). |
The modified cograph_network object.
as_cograph, get_nodes, set_edges
mat <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), nrow = 3)
net <- as_cograph(mat)
new_nodes <- data.frame(id = 1:3, label = c("A", "B", "C"))
net <- set_nodes(net, new_nodes)
get_labels(net)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.