We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no_infomap=True
To replicate:
edges = [ [1,2], [1,3], [2,3], [3,4], [4,5], ] G = nx.Graph() G.add_edges_from(edges) im = infomap.Infomap(silent=True, no_infomap=True) im.add_networkx_graph(G) im.run() for node in im.nodes: print(node.node_id, node.data.flow)
Output is
0 0.0
With no_infomap=False, the output is
no_infomap=False
3 0.30000000000000004 1 0.2 2 0.2 4 0.2 5 0.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To replicate:
Output is
With
no_infomap=False
, the output isThe text was updated successfully, but these errors were encountered: