density#
- density(B, nodes)[source]#
返回二分图 B 的密度。
- Parameters:
- BNetworkX 图
- nodes: 列表或容器
二分图中一个节点集的节点。
- Returns:
- dfloat
二分图的密度
See also
Notes
作为参数传递的节点容器必须包含二分图中两个节点集之一的所有节点,以避免在断开连接的图中出现歧义。 有关 NetworkX 中如何处理二分图的更多详细信息,请参阅
bipartite 文档
。Examples
>>> from networkx.algorithms import bipartite >>> G = nx.complete_bipartite_graph(3, 2) >>> X = set([0, 1, 2]) >>> bipartite.density(G, X) 1.0 >>> Y = set([3, 4]) >>> bipartite.density(G, Y) 1.0