powered by
Replaces the nodes data frame in a cograph_network object. Automatically updates n_nodes and labels.
set_nodes(x, nodes_df)
The modified cograph_network object.
A cograph_network object.
A data frame with node information (id, label columns expected).
as_cograph, get_nodes, set_edges
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)
Run the code above in your browser using DataLab