Learn R Programming

cograph (version 1.5.2)

get_nodes: Get Nodes from Cograph Network

Description

Extracts the nodes data frame from a cograph_network object.

Usage

get_nodes(x)

Value

A data frame with columns: id, label, name, x, y (and possibly others).

Arguments

x

A cograph_network object.

See Also

as_cograph, n_nodes, get_edges

Examples

Run this code
mat <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), nrow = 3)
net <- as_cograph(mat)
get_nodes(net)

Run the code above in your browser using DataLab