Functions¶
Functional interface to graph methods and assorted utilities.
Graph¶
|
Return the degree of a node or nodes at time t. |
|
Return a list of the frequency of each degree value. |
|
Return the density of a graph at timestamp t. |
|
Return a copy of the graph G with all of the edges removed. |
|
Return True if graph is directed. |
|
Add a star at time t. |
|
Add a path at time t. |
|
Add a cycle at time t. |
Nodes¶
|
Return a list of the nodes in the graph at a given snapshot. |
|
Return the number of nodes in the t snpashot of a dynamic graph. |
|
Returns all of the neighbors of a node in the graph at time t. |
|
Returns the non-neighbors of the node in the graph at time t. |
Interactions¶
|
Return the list of edges present in a given snapshot. |
|
Return the number of edges between two nodes at time t. |
|
Returns the non-existent edges in the graph at time t. |
Freezing graph structure¶
|
Modify graph to prevent further change by adding or removing nodes or edges. |
|
Return True if graph is frozen. |
Snapshots and Interaction Stream¶
Generate a temporal ordered stream of interactions. |
|
|
Return an iterator for (node, degree) at time t. |
Return the ordered list of snapshot ids present in the dynamic graph. |
|
|
Return the number of interactions within snapshot t. |
|
Return the distribution of inter event time. |