Curved Edges

Curved edges are repelled by nodes and other edges. This reduces node/edge and edge/edge occlusions.

plot 11 curved edge layout
import matplotlib.pyplot as plt
import networkx as nx

from netgraph import Graph

Graph(nx.wheel_graph(7), edge_layout='curved')
plt.show()

Total running time of the script: ( 0 minutes 0.140 seconds)

Gallery generated by Sphinx-Gallery