gpt4 book ai didi

graphviz 垂直绘制图形

转载 作者:行者123 更新时间:2023-12-03 01:50:51 24 4
gpt4 key购买 nike

我正在使用 graphviz 绘制有向图。现在的问题是,虽然我能够正确生成图形,但图形是水平设计的,这不符合我的要求。那么,如何垂直绘制有向图请帮我解决这个问题

最佳答案

给出以下脚本,我从问题的评论中提取并编辑该脚本,以通过删除一些无关的分号来使其成功运行:

digraph G { 
graph [ bgcolor=lightgray, resolution=128, fontname=Arial, fontcolor=blue, fontsize=10 ];
node [ fontname=Arial, fontcolor=blue, fontsize=10];
edge [ fontname=Helvetica, fontcolor=red, fontsize=10 ];
"arunachaltourism.com/" -> "webcomindia.biz/profile.php";
"arunachaltourism.com/#" -> "arunachaltourism.com/";
"arunachaltourism.com/aalo.php" -> "arunachaltourism.com/";
}

我将脚本命名为x.dot。现在,运行:

dot x.dot -Tjpg -o x.jpg

...产生:

enter image description here

...因为默认值为rankdir=TB。插入:

rankdir=LR

...作为脚本的第二行并再次通过 dot 运行脚本给出:

enter image description here

因此,我不清楚为什么第一次可能会水平绘制图表,但您将能够看到使用 rankdir 如何使图表水平或水平绘制垂直。

关于graphviz 垂直绘制图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18078318/

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