我想在 Graphviz 中生成以下图表:

出于解释 here 的原因,这个:

digraph
{
   layout=dot;
   rankdir="LR";
   overlap = true;
   node[shape=record, height="0.4", width="0.4"];
   edge[dir=none];

   A; B; C; D; E; F; G; H; I;

   A -> B -> C;
   D -> E -> F;
   G -> H -> I;
   edge[constraint=false];
   A -> D -> G;

   subgraph clusterX
   {
      label="Cluster 1";
      A; B;
   }

   subgraph clusterY
   {
      label="Cluster 2";
      E; F; H; I;
   }

}

产生这个:

some careful tweaking of the order of appearance of nodes 之后:
   F; E; I; H; D; G; A; B; C;

我得到正确的结果。

虽然这有效,但我想更直接地控制节点的放置,所以我尝试切换到neato,以便我可以使用pos强制节点位置:
graph g
{
   layout=neato;
   node[shape=record, height="0.4", width="0.4"];
   edge[dir=none];

   A [pos="1,3!"];
   B [pos="2,3!"];
   C [pos="3,3!"];
   D [pos="1,2!"];
   E [pos="2,2!"];
   F [pos="3,2!"];
   G [pos="1,1!"];
   H [pos="2,1!"];
   I [pos="3,1!"];

   A -- B -- C;
   D -- E -- F;
   G -- H -- I;
   A -- D -- G;

   subgraph clusterX
   {
      label="Cluster 1";
      A;
      B;
   }

   subgraph clusterY
   {
      label="Cluster 2";
      E; F; H; I;
   }
}

这给出了以下结果:

我怎样才能让neato在集群边界和集群内的节点之间添加填充(以与点相同的方式)?

最佳答案

我讨厌成为派对上的排便者,但我认为固定职位和集群的方法不会成功。

集群支持取决于布局引擎 - not all engines support it to the same degree :



Neato does not seem to be a part of the engines supporting clusters ,虽然 fdp 确实支持类似neato的布局,但它确实支持 not support fixed positions

在上面链接的论坛条目中,ERG 建议在某些时候使用 gvpr 脚本来实现这一点 - 可能不是您想到的解决方案。

顺便说一句,该图不应该是有向图,我收到警告并将所有 -> 替换为 --

关于graphviz - 使用 Graphviz 和neato 时集群边界和节点之间的填充,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9871062/

10-13 00:04