当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python NetworkX find_threshold_graph用法及代码示例


本文简要介绍 networkx.algorithms.threshold.find_threshold_graph 的用法。

用法:

find_threshold_graph(G, create_using=None)

返回接近 G 中最大的阈值子图。

阈值图将包含 G 中的最大度数节点。

参数

GNetworkX 图形实例

GraphMultiDiGraph 的实例

create_usingNetworkX 图形类或 None (默认),可选

构建阈值图时要使用的图类型。如果 None ,则从输入中推断出适当的图形类型。

返回

graph

表示阈值图的图实例

参考

1

Threshold graphs: https://en.wikipedia.org/wiki/Threshold_graph

例子

>>> from networkx.algorithms.threshold import find_threshold_graph
>>> G = nx.barbell_graph(3, 3)
>>> T = find_threshold_graph(G)
>>> T.nodes # may vary
NodeView((7, 8, 5, 6))

相关用法


注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.algorithms.threshold.find_threshold_graph。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。