Creating curved edges with NetworkX in Python3 (Matplotlib)


To create curved edges with NetworkX in Python3, we can use connectionstyle="arc3, rad=0.4".

Steps

  • Set the figure size and adjust the padding between and around the subplots.
  • Initialize a graph with edges, name, and graph attributes.
  • Add nodes to the created graph.
  • Add edges from one node to another.
  • Draw the graph G with Matplotlib, with connectionstyle="arc3, rad=0.4".
  • To display the figure, 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()

pos = nx.spring_layout(G)
G.add_nodes_from([1, 2, 3, 4])
G.add_edges_from([(1, 2), (2, 4), (2, 3), (4, 1)])

nx.draw(G, with_labels=True, connectionstyle="arc3,rad=0.4")

plt.show()

Output

Updated on: 07-Jul-2021

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements