Description Usage Arguments Value Examples
Membership estimation algorithm called mixedSCORE
1 | mixedSCORE(A, K, verbose = F)
|
A |
n-by-n binary symmtric adjacency matrix. |
K |
number of communities. |
verbose |
whether generate message |
A list containing
n-by-(K-1) ratio matrix.
Selected tunning parameter used for vertex hunting algorithm.
A vector of the estimated degree heterogeniety parameters
K-by-(K-1) K vertices of the found convex hull
L-by-(K-1) L centers by kmeans
n-by-K membership matrix.
A vector of maximum membership of each node
A vector of integers indicating hard clutering labels, by assigning the node to the cluster with max membership
1 2 3 4 5 6 | library(igraphdata)
library(igraph)
data('karate')
A = get.adjacency(karate)
karate.mixed.out = mixedSCORE(A, 2)
karate.mixed.out$memberships
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.