本文簡要介紹
networkx.algorithms.threshold.is_threshold_graph
的用法。用法:
is_threshold_graph(G)
如果
G
是閾值圖,則返回True
。- G:NetworkX 圖形實例
Graph
、DiGraph
、MultiGraph
或MultiDiGraph
的實例
參數:
返回:
參考:
- 1
Threshold graphs: https://en.wikipedia.org/wiki/Threshold_graph
例子:
>>> from networkx.algorithms.threshold import is_threshold_graph >>> G = nx.path_graph(3) >>> is_threshold_graph(G) True >>> G = nx.barbell_graph(3, 3) >>> is_threshold_graph(G) False
相關用法
- Python NetworkX is_directed_acyclic_graph用法及代碼示例
- Python NetworkX is_graphical用法及代碼示例
- Python NetworkX is_locally_k_edge_connected用法及代碼示例
- Python NetworkX is_isomorphic用法及代碼示例
- Python NetworkX is_simple_path用法及代碼示例
- Python NetworkX is_bipartite用法及代碼示例
- Python NetworkX is_distance_regular用法及代碼示例
- Python NetworkX is_bipartite_node_set用法及代碼示例
- Python NetworkX is_strongly_regular用法及代碼示例
- Python NetworkX is_k_edge_connected用法及代碼示例
- Python NetworkX is_isolate用法及代碼示例
- Python NetworkX is_semiconnected用法及代碼示例
- Python NetworkX is_weighted用法及代碼示例
- Python NetworkX is_biconnected用法及代碼示例
- Python NetworkX is_aperiodic用法及代碼示例
- Python NetworkX is_eulerian用法及代碼示例
- Python NetworkX is_chordal用法及代碼示例
- Python NetworkX is_at_free用法及代碼示例
- Python NetworkX is_connected用法及代碼示例
- Python NetworkX is_negatively_weighted用法及代碼示例
- Python NetworkX isolates用法及代碼示例
- Python NetworkX inverse_line_graph用法及代碼示例
- Python NetworkX intersection用法及代碼示例
- Python NetworkX intersection_array用法及代碼示例
- Python NetworkX induced_subgraph用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.algorithms.threshold.is_threshold_graph。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。