Get node attributes from graph
Parameters : | G : NetworkX Graph name : string
|
---|---|
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'