View source: R/clique_expansion.R
| clique_expansion | R Documentation |
Projects a net_hypergraph to a standard pairwise
netobject (the clique expansion - also called the
"downgrade" of a hypergraph to a dyadic graph). Each hyperedge of size
k contributes 1 (or its weight) to every pair of its members. The
resulting edge weight W[i, j] equals the number of hyperedges
containing both i and j (binary incidence) or the sum of incidence
products (weighted incidence).
clique_expansion(hg, weighted = TRUE)
hg |
A |
weighted |
Logical. If |
The clique expansion is the standard "loss-y but lossless-on-pairwise"
projection: it preserves which pairs co-occurred and how often but
discards the higher-order grouping. Comparing clique_expansion(hg) to
a directly-estimated pairwise network (e.g. via cooccurrence() on
the same data) quantifies how much information was carried by the
hyperedge structure.
Computed in one BLAS call via tcrossprod(incidence); runs in
O(n_nodes^2 * n_hyperedges) time, fast for typical sizes.
Closes the I/O cycle: event data -> bipartite_groups() ->
clique_expansion() -> any function that accepts a netobject
(centrality, bootstrap, clustering, plotting via cograph).
A netobject (also cograph_network) with method = "clique_expansion", undirected, with weighted symmetric adjacency
W = incidence %*% t(incidence) and zero diagonal.
(experimental) Validated against tcrossprod(incidence) with zero
diagonal. No external R package exposes clique expansion as a primitive;
the implementation is a direct one-line restatement of the definition.
Tian, Y., & Zafarani, R. (2024). Higher-order network analysis methods. SIGKDD Explorations 26(1), Section 5.1.5.
build_hypergraph(), bipartite_groups(), build_network().
df <- data.frame(
player = c("A", "B", "C", "A", "B", "D", "C", "D", "E"),
session = c("S1", "S1", "S1", "S2", "S2", "S3", "S3", "S3", "S3")
)
hg <- bipartite_groups(df, player = "player", group = "session")
net <- clique_expansion(hg)
net$weights
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.