Extracts the nodes data frame from a cograph_network object.
Deprecated: Use get_nodes instead.
Examples
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
#> id label name x y
#> 1 1 1 1 NA NA
#> 2 2 2 2 NA NA
#> 3 3 3 3 NA NA
