community detection method called SCORE Spectral Clustering On Ratios-of-Eigenvectors (SCORE)
SCORE(A, K, threshold = NULL)
A
: n-by-n binary symmtric adjacency matrix.K
: number of communities.threshold
: (optional) the threshold of ratio matrix. By defalt is log(n)
.A list containing
library(igraphdata) library(igraph) data('karate') A = get.adjacency(karate) karate.out = SCORE(A, 2) karate.out$labels
Useful links