dynetx.DynGraph.neighbors

DynGraph.neighbors(n, t=None)

Return a list of the nodes connected to the node n at time t.

Parameters

nnode

A node in the graph

tsnapshot id (default=None)

If None will be returned the neighbors of the node on the flattened graph.

Returns

nlistlist

A list of nodes that are adjacent to n.

Raises

NetworkXError

If the node n is not in the graph.

Examples

>>> import dynetx as dn
>>> G = dn.DynGraph()
>>> G.add_path([0,1,2,3], t=0)
>>> G.neighbors(0, t=0)
[1]
>>> G.neighbors(0, t=1)
[]