圆形图与pygraphviz

时间:2018-07-05 18:29:34

标签: python pygraphviz

我正在从两个以png图像为节点的列表中构建图形。我的目标是具有圆形布局,因此我将“ circo”作为布局参数。

G=pgv.AGraph()
for i,j in zip(list1,list2):
G.add_node(str(i),image="picture.png",label="",shape="none")
G.add_node(str(j),image="picture.png",label="",shape="none")
G.add_edge(str(i),str(j))

G.layout(prog='circo')
G.draw("output.png",prog='pos')

根据下面提供的示例,此网络侧https://graphviz.gitlab.io/about/上的'circo'描述我应该能够拥有这样的东西: enter image description here

但是,我得到了: enter image description here

每位建议如何实现我的目标的人都会受到赞赏。

0 个答案:

没有答案