强行“主线” Graphviz 中的节点变成直线(或替代方案)

发布于 2024-10-11 08:28:40 字数 416 浏览 4 评论 0原文

我正在尝试使用 Graphviz dot (但我愿意使用其他东西)来生成一个带有长“主线”节点和许多小分支的图。我希望主线从左到右是笔直的,其上方或下方有小分支。然而,Graphviz“平衡”了两个分支,所以我最终得到了一个弯曲的图。

为了说明这一点,这里有一个类似于我当前得到的草图:

Current Graph

这就是我真正想要的:

Wanted graph

有没有办法强制或鼓励 Graphviz 生成像第二个这样的图表?我也许可以使用“虚拟”第二个分支来让它进行三向布局,然后隐藏/删除虚拟分支,但如果有更好的选择那就更好了。

I'm trying to use Graphviz dot (but am willing to use something else) to generate a graph with a long "main line" of nodes, and many small branches. I'd like the main line to be straight from left to right, with the small branches above or below it. However, Graphviz "balances" the two branches, so I end up with a crooked graph.

To illustrate, here's a sketch similar to what I currently get:

Current Graph

And this is what I actually want:

Wanted graph

Is there any way to force or encourage Graphviz to generate a graph like the second one? I may be able to use "dummy" second branches to have it do a 3-way layout, and then hide/delete the dummies afterward, but if there's a better option that would be preferable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

愚人国度 2024-10-18 08:28:40

这是使用边的 weight 属性的解决方案:

digraph G {
    rankdir="LR";
    node[width=0.15, height=0.15, shape=point];
    edge[weight=2, arrowhead=none];
    1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8;
    edge[weight=1];
    2 -> 9 -> 10 ;
    5-> 11 -> 12;
}

结果:

graphivz

Here is a solution using the weight attribute of edges:

digraph G {
    rankdir="LR";
    node[width=0.15, height=0.15, shape=point];
    edge[weight=2, arrowhead=none];
    1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8;
    edge[weight=1];
    2 -> 9 -> 10 ;
    5-> 11 -> 12;
}

Result:

graphivz

才能让你更想念 2024-10-18 08:28:40

使用节点的 group 属性的第二个解决方案 - 又是一个有向图:

来自 graphviz dot 参考:

如果一条边的端点属于
同一组,即具有相同的
组属性,参数设置为
避免交叉并保留边缘
直。

所以我们开始:

digraph g{
    rankdir="LR";
    node[width=0.15, height=0.15, shape=point, group=main];
    edge[arrowhead=none];
    1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8;
    node[group=branches];
    2 ->  9 -> 10;
    5 -> 11 -> 12;
}

输出与我的第一个答案完全相同。

A second solution using the group attribute of nodes - again a directed graph:

From the graphviz dot reference:

If the end points of an edge belong to
the same group, i.e., have the same
group attribute, parameters are set to
avoid crossings and keep the edges
straight.

So here we go:

digraph g{
    rankdir="LR";
    node[width=0.15, height=0.15, shape=point, group=main];
    edge[arrowhead=none];
    1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8;
    node[group=branches];
    2 ->  9 -> 10;
    5 -> 11 -> 12;
}

Output is exactly the same as in my first answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文