summary.cograph_network: Summary of cograph_network Object

View source: R/methods-plot.R

summary.cograph_networkR Documentation

Summary of cograph_network Object

Description

Summary of cograph_network Object

Usage

## S3 method for class 'cograph_network'
summary(object, ...)

Arguments

object

A cograph_network object.

...

Ignored.

Value

A list with network summary information (invisibly), containing elements n_nodes, n_edges, directed, weighted, and has_layout.

Examples

adj <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), nrow = 3)
net <- cograph(adj)
summary(net)


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