AttributeError: module 'networkx' has no attribute 'connected_component_subgraphs'
问题 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] I am getting the below given error when am trying to use nx.connected_component_subgraphs(G). Please help with this issue. In the dataset there are two coumns(movie and actor), and it's in the form bipartite graph. I want to get connected components for