
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Show Node Name in Matplotlib Graphs Using NetworkX
To show node name in graphs using networkx, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Initialize a graph with edges, name, or graph attributes.
- Add multiple nodes using add_nodes_from() method.
- Add all the edges using add_edge_from() method.
- Draw the graph G with Matplotlib using draw() method. Set with_labels to True.
- To display the graph, we can use show() method.
Example
import matplotlib.pylab as plt import networkx as nx plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True G = nx.DiGraph() G.add_nodes_from([1, 2, 3, 4]) G.add_edges_from([(1, 2), (2, 1), (2, 3), (1,4), (3,4)]) nx.draw(G, with_labels=True) plt.show()
Output
Advertisements