i have of set of document with this correlation (based on similarity)
This is the set:
1: 2,3,4
2: 1,4
3: 1
4: 1,2
Now i start creating a matrix
0 1 1 1
1 0 0 1
1 0 0 0
1 1 0 0
Now i apply MCL
The result cluster is:
[0] = 1,2,3,4
but the result that I expected was
[0] = 1,2,4
[1] = 3
Any ideas? Is Markov clustering the right choose for this type of stats problem?
Thank you for your help