markovClust: Markov clustering function

Description Usage Arguments Examples

Description

Markov clustering function algorithm

Usage

1
2
markovClust(M, inflation = 2.5, expansion = 2, e_stop = 0.001,
  max_it = 100)

Arguments

M

adjacency matrix

inflation

inflation parameter

expansion

expansion parameter

max_it

maximum number of iterations

eStop

stop criterium - Frobenius norm of matrix M_t - M_t-1

Examples

1
2
3
4
5
6
7
8
A <- rbind(c(1, 1, 0, 1, 0, 1, 0),
           c(1, 1, 1, 1, 0, 0, 0),
           c(0, 1, 1, 1, 0, 0, 1),
           c(1, 1, 1, 1, 1, 0, 0),
           c(0, 0, 0, 1, 1, 1, 1),
           c(1, 0, 0, 0, 1, 1, 1),
           c(0, 0, 1, 0, 1, 1, 1))
markovClust(A)

tomis9/markovClust documentation built on May 12, 2019, 7:45 a.m.