betweenness_centrality
is_bipartite_node_set
Enter search terms or a module, class or function name.
Returns True if graph G is bipartite, False if not.
See also
color, is_bipartite_node_set
Examples
>>> from networkx.algorithms import bipartite >>> G = nx.path_graph(4) >>> print(bipartite.is_bipartite(G)) True