networkx draw_networkx_edges capstyle

时间:2012-07-03 14:00:27

标签: python matplotlib networkx

有没有人知道在通过(例如)draw_networkx_edges绘制networkx边缘时是否可以对线属性进行细粒度控制?我想控制行solid_capstylesolid_joinstyle,它们是(matplotlib)Line2D属性。

>>> import networkx as nx
>>> import matplotlib.pyplot as plt
>>> G = nx.dodecahedral_graph()
>>> edges = nx.draw_networkx_edges(G, pos=nx.spring_layout(G), width=7)
>>> plt.show()

在上面的例子中,我想通过控制capstyle来隐藏边缘之间的“间隙”。我想要以恰当的大小添加节点以填充间隙,但是我最终绘图中的边缘是彩色的,因此添加节点不会削减它。 我无法从文档中找出来或看edges.properties()如何做我想做的事......有什么建议吗?

卡森

1 个答案:

答案 0 :(得分:7)

看起来你无法在matplotlib系列上设置capstyle。

但是你可以使用Line2D对象创建自己的边集合,这可以让你控制capstyle:

import networkx as nx
import matplotlib.pyplot as plt
from matplotlib.lines import Line2D
G = nx.dodecahedral_graph()
pos = nx.spring_layout(G)
ax = plt.gca()
for u,v in G.edges():
    x = [pos[u][0],pos[v][0]]
    y = [pos[u][1],pos[v][1]]
    l = Line2D(x,y,linewidth=8,solid_capstyle='round')
    ax.add_line(l)
ax.autoscale()
plt.show()