Description Usage Arguments Details Value Author(s) References See Also Examples
Spectral clustering based on k-nearest neighbor graph.
1 2 3 |
data |
Matrix or data frame. |
centers |
number of clusters to estimate, if NULL the number is chosen automatical. |
nn |
Number of neighbors considered. |
method |
Normalisation of the Laplacian ("none", "symmetric" or "random-walk"). |
gmax |
maximal number of connected components. |
x |
an object of class |
... |
Further arguments passed to or from other methods. |
specClust
alllows to estimate several popular spectral clustering algorithms, for an overview see von Luxburg (2007).
The Laplacian is constructed from a from nearest neighbors and there are several kernels available. The eigenvalues and eigenvectors are computed using the binding in igraph to arpack. This should ensure that this algorithm is also feasable for larger datasets as the the the distances used have dimension n*m, where n is the number of observations and m the number of nearest neighbors. The Laplacian is sparse and has roughly n*m elements and only k eigenvectors are computed, where k is the number of centers.
specClust
returns a kmeans object or in case of k being a vector a list of kmeans objects.
Klaus P. Schliep klaus.schliep@gmail.com
U. von Luxburg (2007) A tutorial on spectral clustering, Stat Comput, 17, 395–416
Ng, A., Jordan, M., Weiss, Y. (2002) On spectral clustering: analysis and an algorithm. In: Dietterich, T., Becker, S., Ghahramani, Z. (eds.) Advances in Neural Information Processing Systems, 14, 849–856. MIT Press, Cambridge
Lihi Zelnik-Manor and P. Perona (2004) Self-Tuning Spectral Clustering, Eighteenth Annual Conference on Neural Information Processing Systems, (NIPS)
Shi, J. and Malik, J. (2000). Normalized cuts and image segmentation. IEEE Transactions on Pattern Analysis and Machine Intelligence, 22 (8), 888–905
1 2 3 4 5 |
1 2 3
setosa 0 0 50
versicolor 48 2 0
virginica 4 46 0
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.