當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。