Description Usage Arguments Details Value Note Author(s) See Also Examples
View source: R/epsilon_hypergraph.R
Build a hypergraph by constructing hyperedges from balls around a set of points.
1 2 | epsilon_hypergraph(x, epsilon, method = "Euclidean", reduce=FALSE,
as.graph=FALSE)
|
x |
a matrix of points. |
epsilon |
radius of the balls. May be a vector. |
method |
passed to |
reduce |
logical. Whether to reduce the hypergraph by removing reduntant hyper-edges. |
as.graph |
logical. Whether to return a graph instead of a hypergraph. |
Each point of x
corresponds to a vertex in the hypergraph.
For each point, a ball of radius epsilon
is constructed,
and all points in the ball form a hyper-edge in the graph.
If epsilon is a vector, each ball may have a different radius, and
if the length of epsilon is less than the number of points, they are
repeated.
If reduce=TRUE
reduntant hyper-edges (those contained in other
hyper-edges) are removed. If as.graph==TRUE
, reduce
is
ignored an a graph is returned instead of a hypergraph.
a hypergraph or graph.
Because of symmetry (a is in the ball centered at b if and only if b is in the
ball centered at a), the incidence matrix of an epsilon hypergraph is
square and symmetric. It can thus be interpreted as an adjacency matrix,
and it is this graph that is returned if as.graph==TRUE
.
David J. Marchette dmarchette@gmail.com.
knn_hypergraph
,
sample_geom_hypergraph
,
dist
.
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.