High-performance network analysis toolkit for large-scale graphs
Performance toolkit for large-scale network analysis
networkit$ networkit --help$ python -c "import networkit as nk; G = nk.readGraph('graph.edgelist', nk.Format.EdgeListTabZero); nk.community.detectCommunities(G)"$ python -c "import networkit as nk; G = nk.readGraph('graph.edgelist', nk.Format.EdgeListTabZero); bc = nk.centrality.Betweenness(G); bc.run(); print(bc.scores())"