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


Python NetworkX get_node_attributes用法及代码示例


本文简要介绍 networkx.classes.function.get_node_attributes 的用法。

用法:

get_node_attributes(G, name)

从图中获取节点属性

参数

GNetworkX 图表
namestring

属性名称

返回

由节点键入的属性字典。

例子

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

相关用法


注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.classes.function.get_node_attributes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。