gpt4 book ai didi

graph - 边用 Graphviz 和 Dot 指向边

转载 作者:行者123 更新时间:2023-12-03 09:40:09 25 4
gpt4 key购买 nike

我想将一条边指向 graphviz 中的另一条边使用 dot格式。

到目前为止我得到了什么:

digraph G {
Hello->dummy;
dummy->World;
dummy[shape=point width=0];
Test->dummy;
}

产生

current status

我想得到的是与此更相似的东西:

enter image description here

任何想法如何做到这一点?

最佳答案

也许 rank = same有诀窍吗?

digraph G
{
{ rank = same; Test; dummy } // dummy and Test on the same level
dummy[ shape = point, width = 0 ]; // connector
Hello -> dummy[ arrowhead = none ]; // remove arrowhead to connector
dummy -> Test[ dir = back ]; // you want Test on the right side
dummy -> World;
}

产量

enter image description here

关于graph - 边用 Graphviz 和 Dot 指向边,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38410370/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com