to_dict_of_lists
to_edgelist
Enter search terms or a module, class or function name.
Return a graph from a dictionary of lists.
d : dictionary of lists
A dictionary of lists adjacency representation.
create_using : NetworkX graph
Use specified graph for result. Otherwise a new graph is created.
Examples
>>> dol= {0:[1]} # single edge (0,1) >>> G=nx.from_dict_of_lists(dol)
or >>> G=nx.Graph(dol) # use Graph constructor