get_node_attributes#

get_node_attributes(G, name)[source]#

Get node attributes from graph

Parameters:
GNetworkX Graph
namestring

Attribute name

Returns:
Dictionary of attributes keyed by node.

Examples

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