to_edgelist
to_numpy_matrix
Enter search terms or a module, class or function name.
Return a graph from a list of edges.
edgelist : list or iterator
Edge tuples
create_using : NetworkX graph
Use specified graph for result. Otherwise a new graph is created.
Examples
>>> edgelist= [(0,1)] # single edge (0,1) >>> G=nx.from_edgelist(edgelist)
or >>> G=nx.Graph(edgelist) # use Graph constructor