Description Usage Arguments Details Value Author(s) Examples
View source: R/induced.hypergraph.R
Computes the hypergraph induced by a subset of the vertices.
1 | induced_hypergraph(h, v, simplify = TRUE)
|
h |
a hypergraph. |
v |
a vector of vertices. |
simplify |
logical. |
First the hypergraph is reduced to only those vertices in v
. This
results in it retaining only those hyper-edges containing any elements of
v
, as well as removing from the resultant hyper-edges any vertices
not in v
. If simplify
is true, loops are then removed. This
function always removes empty hyper-edges, so any hyper-edge which does
not contain any elements of v
is removed.
a hypergraph.
David J. Marchette dmarchette@gmail.com
1 2 | h <- hypergraph_from_edgelist(list(1:4,3:7,c(1,3,5)))
k <- induced_hypergraph(h,c(1,3,5))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.