Answers for "plot graph using networkx"

1

networkx display graph

import networkx as nx
import matplotlib.pyplot as plt
G = nx.Graph()
G.add_edge(1,2)
G.add_edge(1,3)
nx.draw(G, with_labels=True)
plt.show()
Posted by: Guest on April-07-2021
1

networkx plot graph show labels

import networkx as nx
import pylab as plt

G=nx.Graph()
# Add nodes and edges
G.add_edge("Node1", "Node2")
nx.draw(G, with_labels = True)
plt.savefig('labels.png')
Posted by: Guest on March-25-2020

Browse Popular Code Answers by Language