grouping all the nodes into one cluster #241
-
Hi, I was using the infomap on an undirected, weighted graph, with 121 nodes and 6225 edges. The issue I have is that all the elements were grouped into one cluster. Can someone help me with that, thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, and thanks for reaching out! It sounds like your network Is very dense, making it hard to find a meaningful community structure. The usual way to handle these situations is to use the flag You can also consider thresholding how many links you include to make the network more sparse with If the data is aggregated and you can stratify it into multiple layers, that would also help. Let me know how it goes! |
Beta Was this translation helpful? Give feedback.
Hi, and thanks for reaching out!
It sounds like your network Is very dense, making it hard to find a meaningful community structure.
The usual way to handle these situations is to use the flag
--markov-time f
for somef
smaller than 1.You can also consider thresholding how many links you include to make the network more sparse with
--weight-threshold n
.If the data is aggregated and you can stratify it into multiple layers, that would also help.
Let me know how it goes!