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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。