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


Python NetworkX get_edge_attributes用法及代碼示例


本文簡要介紹 networkx.classes.function.get_edge_attributes 的用法。

用法:

get_edge_attributes(G, name)

從圖中獲取邊屬性

參數

GNetworkX 圖表
namestring

屬性名稱

返回

由邊鍵控的屬性字典。對於(di)圖,鍵是
2 元組形式:(u, v)。對於多(二)圖,鍵是 3 元組
形式:(u, v, key)。

例子

>>> G = nx.Graph()
>>> nx.add_path(G, [1, 2, 3], color="red")
>>> color = nx.get_edge_attributes(G, "color")
>>> color[(1, 2)]
'red'

相關用法


注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.classes.function.get_edge_attributes。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。