I have a directed, weighted network stored in a txt file as a list of 3 elements:
node1 node2 weight
node1 node3 weight
...
So for example the triplet:
1 10 50
means that I got an edge between node 1 and node 10 with weight 50.
Can someone please explain in detail how can I import this into graph tool to perform a community detection analysis using the SBM.
Thanks a lot.