magoavi
11/25/2017 - 10:27 PM

view_graph_nodes_and_edges

View nodes and edges with data information

#This will just display the graph nodes
G.nodes()

#This will display graph edges and information about the attributes associated
#with the edges
G.edges(data=True)