B = nx.Graph()
B.add_nodes_from(data['movie'].unique(), bipartite=0, label='movie')
B.add_nodes_from(data['actor'].unique(), bipartite=1, label='actor')
B.add_edges_from(edges, label='acted')
A = list(nx.connected_component_subgraphs(B))[0]
当我尝试使用时,我得到下面给出的错误。nx.connected_component_subgraphs(G)
在数据集中有两个库姆(电影和演员),它以二分图的形式出现。
我想获取电影节点的连接组件。
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-16-efff4e6fafc4> in <module>
----> 1 A = list(nx.connected_component_subgraphs(B))[0]
AttributeError: module 'networkx' has no attribute 'connected_component_subgraphs'
猛跑小猪
收到一只叮咚
繁花如伊
蝴蝶刀刀
相关分类