本文簡要介紹
networkx.DiGraph.size
的用法。用法:
DiGraph.size(weight=None)
返回邊數或所有邊權重的總和。
- weight:字符串或無,可選(默認=無)
保存用作權重的數值的邊屬性。如果沒有,則每條邊的權重為 1。
- size:數字
邊數或(如果提供了權重關鍵字)總權重總和。
如果權重為 None,則返回 int。否則為浮點數(如果權重更通用,則為更通用的數字)。
參數:
返回:
例子:
>>> G = nx.path_graph(4) # or DiGraph, MultiGraph, MultiDiGraph, etc >>> G.size() 3
>>> G = nx.Graph() # or DiGraph, MultiGraph, MultiDiGraph, etc >>> G.add_edge("a", "b", weight=2) >>> G.add_edge("b", "c", weight=4) >>> G.size() 2 >>> G.size(weight="weight") 6.0
相關用法
- Python NetworkX DiGraph.subgraph用法及代碼示例
- Python NetworkX DiGraph.__contains__用法及代碼示例
- Python NetworkX DiGraph.to_directed用法及代碼示例
- Python NetworkX DiGraph.in_degree用法及代碼示例
- Python NetworkX DiGraph.out_degree用法及代碼示例
- Python NetworkX DiGraph.add_edges_from用法及代碼示例
- Python NetworkX DiGraph.edge_subgraph用法及代碼示例
- Python NetworkX DiGraph.adjacency用法及代碼示例
- Python NetworkX DiGraph.remove_nodes_from用法及代碼示例
- Python NetworkX DiGraph.has_edge用法及代碼示例
- Python NetworkX DiGraph.out_edges用法及代碼示例
- Python NetworkX DiGraph.add_weighted_edges_from用法及代碼示例
- Python NetworkX DiGraph.__iter__用法及代碼示例
- Python NetworkX DiGraph.number_of_nodes用法及代碼示例
- Python NetworkX DiGraph.has_node用法及代碼示例
- Python NetworkX DiGraph.add_edge用法及代碼示例
- Python NetworkX DiGraph.get_edge_data用法及代碼示例
- Python NetworkX DiGraph.clear用法及代碼示例
- Python NetworkX DiGraph.copy用法及代碼示例
- Python NetworkX DiGraph.remove_node用法及代碼示例
- Python NetworkX DiGraph.add_node用法及代碼示例
- Python NetworkX DiGraph.degree用法及代碼示例
- Python NetworkX DiGraph.__len__用法及代碼示例
- Python NetworkX DiGraph.to_undirected用法及代碼示例
- Python NetworkX DiGraph.__init__用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.DiGraph.size。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。