set_nodes: Set Nodes in Cograph Network

View source: R/class-network.R

set_nodesR Documentation

Set Nodes in Cograph Network

Description

Replaces the nodes data frame in a cograph_network object.

Usage

set_nodes(x, nodes_df)

Arguments

x

A cograph_network object.

nodes_df

A data frame with node information (id, label columns expected).

Value

The modified cograph_network object.

See Also

as_cograph, get_nodes, set_edges

Examples

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)

cograph documentation built on April 1, 2026, 1:07 a.m.