Graph adjacency object holding the neighbors of each node.
This object is a read-only dict-like structure with node keys and neighbor-dict values. The neighbor-dict is keyed by neighbor to the edge-data-dict. So G.adj[3][2]['color'] = 'blue'
sets the color of the edge (3, 2)
to "blue"
.
Iterating over G.adj behaves like a dict. Useful idioms include for nbr, datadict in G.adj[n].items():
.
The neighbor information is also provided by subscripting the graph. So for nbr, foovalue in G[node].data('foo', default=1):
works.
For directed graphs, G.adj
holds outgoing (successor) info.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4