network_clique_size: Largest Clique Size

View source: R/network-summary.R

network_clique_sizeR Documentation

Largest Clique Size

Description

Finds the size of the largest clique (complete subgraph) in the network. Also known as the clique number or omega of the graph.

Usage

network_clique_size(x, ...)

Arguments

x

Network input: matrix, igraph, network, cograph_network, or tna object

...

Additional arguments passed to to_igraph

Value

Integer: size of the largest clique

Examples

# Triangle embedded in larger graph
adj <- matrix(c(0,1,1,1, 1,0,1,0, 1,1,0,0, 1,0,0,0), 4, 4)
network_clique_size(adj)  # 3

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