我还没有找到在 pydot 中使用端口绘制节点的方法:无论是在文档中还是在网络上的示例中。
有没有办法使用 pydot 绘制下图?
图表:
+-----------+
| | G | |
+-----------+
/ \
/ \
+-----------+ +-----------+
| | E | | | | R | |
+-----------+ +-----------+
点代码:
digraph g {
node [shape = record,height=.1];
node0[label = "<f0> |<f1> G|<f2> "];
node1[label = "<f0> |<f1> E|<f2> "];
node2[label = "<f0> |<f1> R|<f2> "];
"node0":f2 -> "node2":f1;
"node0":f0 -> "node1":f1;
}
谢谢!