k-means for SBM
tauKmeansSbm(statistics, n, Q, directed)
statistics
: Statistics matrix , counting the events for the nodes pair during the subinterval n
: Total number of nodes Q
: Total number of groups directed
: Boolean for directed (TRUE) or undirected (FALSE) caseInitial values for
n <- 50 Q <- 3 Dmax <- 2^3 Nijk <- statistics(generated_Q3$data,n,Dmax,directed=FALSE) tau <- tauKmeansSbm(Nijk,n,Q,FALSE)