dynetx.DynGraph.neighbors¶
-
DynGraph.
neighbors
(n, t=None)¶ Return a list of the nodes connected to the node n at time t.
Parameters: - n (node) – A node in the graph
- t (snapshot id (default=None)) – If None will be returned the neighbors of the node on the flattened graph.
Returns: nlist – A list of nodes that are adjacent to n.
Return type: list
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) []