首页 > 解决方案 > 使用 graphviz 将节点定位到子图的右侧

问题描述

graphviz用来绘制一个简单的潜在变量模型的 DAG:

digraph G {

    splines=line;

    subgraph cluster {
        node [style=filled, shape=circle];
        edge [color=blue]
        z[fillcolor=white, color=black, pos = "0,0!"]
        z -> x;
    }

    theta[label = "θ", shape=circle, pos = "10,0!"]
    edge [color=black, style="dashed"]
    theta->z
    theta->x

}

输出很不错:

在此处输入图像描述

但我希望 θ 与 z 高度相同。那可能吗?我尝试使用该pos属性,但如您所见,它被很好地忽略了。我在HackMD工作。

标签: positiongraphvizdirected-acyclic-graphs

解决方案


您可以将约束=false属性添加到theta边缘,这样它们就不会影响布局并且节点将并排保持:

digraph G {

    splines=line;

    subgraph cluster1 {
        node [style=filled, shape=circle];
        edge [color=blue]
        z[fillcolor=white, color=black, pos = "0,0!"]
        z -> x;
    }
    theta[label = "θ", shape=circle, pos = "10,0!"]
    edge [color=black, style="dashed"]
    theta -> z [constraint=false]
    theta -> x [constraint=false] // actually this one is unnecessary, may be omited in this example

}

此外,您可以尝试边缘方向(例如更改位置 a->b、b->a),这有时有助于定位集群。


推荐阅读