dynetx.DynGraph.interactions_iter¶
- DynGraph.interactions_iter(nbunch=None, t=None)¶
Return an iterator over the interaction present in a given snapshot.
Edges are returned as tuples in the order (node, neighbor).
Parameters¶
- nbunchiterable container, optional (default= all nodes)
A container of nodes. The container will be iterated through once.
- tsnapshot id (default=None)
If None the the method returns an iterator over the edges of the flattened graph.
Returns¶
- edge_iteriterator
An iterator of (u,v) tuples of interaction.
See Also¶
interaction : return a list of interaction
Notes¶
Nodes in nbunch that are not in the graph will be (quietly) ignored. For directed graphs this returns the out-interaction.
Examples¶
>>> import dynetx as dn >>> G = dn.DynGraph() >>> G.add_path([0,1,2], 0) >>> G.add_interaction(2,3,1) >>> [e for e in G.interactions_iter(t=0)] [(0, 1), (1, 2)] >>> list(G.interactions_iter()) [(0, 1), (1, 2), (2, 3)]