powered by
Extracts the nodes data frame from a cograph_network object. Deprecated: Use get_nodes instead.
get_nodes
nodes(x)
A data frame with columns: id, label, name, x, y (and possibly others).
A cograph_network object.
get_nodes, as_cograph, n_nodes
as_cograph
n_nodes
mat <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), nrow = 3) net <- as_cograph(mat) nodes(net) # Deprecated, use get_nodes(net) instead
Run the code above in your browser using DataLab