0
私はnetworkxを使ってコミュニティ分析をしようとしています。AttributeError:module 'networkx.algorithms.community'に属性がありません 'girvan_newman'
エラーはmodule 'networkx.algorithms.community' has no attribute 'girvan_newman'
です。 私のpythonバージョンは3.6、networkxバージョン2.0です。
は、ここに私のコードです:
import networkx as nx
from networkx.algorithms import community
G = nx.barbell_graph(5, 1)
communities_generator = community.girvan_newman(G)
top_level_communities = next(communities_generator)
next_level_communities = next(communities_generator)
sorted(map(sorted, next_level_communities))