来自networkx的MultiDiGraph边用connectionStyle绘制

Pab*_*loG 4 python graph-theory matplotlib edges networkx

是否可以使用connectionstyle以某种方式在具有不同曲率的相同节点上绘制不同的边?

我编写了以下代码,但所有三个边都重叠了:

import networkx as nx
import matplotlib.pyplot as plt

G = nx.MultiDiGraph()
G.add_node('n1')
G.add_node('n2')
G.add_edge('n1', 'n2', 0)
G.add_edge('n1', 'n2', 1)
G.add_edge('n1', 'n2', 2)

pos = nx.spring_layout(G)
nx.draw(G, pos, with_labels=True, connectionstyle='arc3, rad = 0.3')

plt.show()
Run Code Online (Sandbox Code Playgroud)

CDJ*_*DJB 5

这可以通过使用不同的参数绘制每条边来完成rad- 如图所示。请注意,我这里的方法使用需要 Python 3.6 的 f 字符串 - 下面您将必须使用不同的方法构建字符串。

代码:

import networkx as nx
import matplotlib.pyplot as plt

G = nx.MultiDiGraph()
G.add_node('n1')
G.add_node('n2')
G.add_edge('n1', 'n2', rad=0.1)
G.add_edge('n1', 'n2', rad=0.2)
G.add_edge('n1', 'n2', rad=0.3)

plt.figure(figsize=(6,6))

pos = nx.spring_layout(G)
nx.draw_networkx_nodes(G, pos)
nx.draw_networkx_labels(G, pos)

for edge in G.edges(data=True):
    nx.draw_networkx_edges(G, pos, edgelist=[(edge[0],edge[1])], connectionstyle=f'arc3, rad = {edge[2]["rad"]}')

plt.show()
Run Code Online (Sandbox Code Playgroud)

输出:

在此输入图像描述

我们甚至可以创建一个新函数来为我们执行此操作:

import networkx as nx
import matplotlib.pyplot as plt

def new_add_edge(G, a, b):
    if (a, b) in G.edges:
        max_rad = max(x[2]['rad'] for x in G.edges(data=True) if sorted(x[:2]) == sorted([a,b]))
    else:
        max_rad = 0
    G.add_edge(a, b, rad=max_rad+0.1)

G = nx.MultiDiGraph()
G.add_node('n1')
G.add_node('n2')

for i in range(5):
    new_add_edge(G, 'n1', 'n2')

for i in range(5):
    new_add_edge(G, 'n2', 'n1')

plt.figure(figsize=(6,6))

pos = nx.spring_layout(G)
nx.draw_networkx_nodes(G, pos)
nx.draw_networkx_labels(G, pos)

for edge in G.edges(data=True):
    nx.draw_networkx_edges(G, pos, edgelist=[(edge[0],edge[1])], connectionstyle=f'arc3, rad = {edge[2]["rad"]}')

plt.show()
Run Code Online (Sandbox Code Playgroud)

输出:

在此输入图像描述