Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/cluster_spectral.R
Use spectral embedding to embed a graph into a lower dimension, then cluster the points using model based clustering. This results in a clustering of the vertices.
1 2 |
g |
a graph. |
verbose |
logical. Whether to print to the screen as it goes. |
adjust.diag |
logical. Whether to set the diagonal of the adjacency matrix to
|
laplacian |
logical. Whether to use the Laplacian rather than the adjacency matrix. |
normalize |
logical. Whether to normalize the matrix by |
scale.by.values |
Whether to scale the embedding vectors by the eigen vectors. |
vectors |
character. "u" or "v" or "uv". The latter is only appropriate for directed graphs. |
d |
embedding dimension. |
... |
arguments passed to |
This first embeds the vertices into a d-dimensional space, using the adjacency
matrix or the Laplacian. See ase
for more information. It then
applies Mclust
to the resultant points to cluster.
An object of class "Mclust".
David J. Marchette dmarchette@gmail.com
Fraley C. and Raftery A. E. (2002) Model-based clustering, discriminant analysis and density estimation, _Journal of the American Statistical Association_, 97/458, pp. 611-631.
ase
.
1 2 3 4 5 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.