【发布时间】:2016-12-16 15:32:47
【问题描述】:
【问题讨论】:
标签: python graphviz decision-tree
【问题讨论】:
标签: python graphviz decision-tree
对于dashed or dotted 试试:
edge [ style="dashed" ]; // affects all edges
// or
A->B [style="dotted"];
绘图的其他部分和边缘之间的边缘或指向边缘的箭头,可能需要放置一个不可见的节点,即一个点,然后从指向它的边缘移除箭头。它似乎仍然存在中断,但它可以用于虚线或虚线。
大约:
S_X [style="invis",shape="point"];
S_Y [style="invis",shape="point"];
S -> S_Y [arrowhead="none"];
S_Y -> Y;
S -> S_X [arrowhead="none"];
S_X -> X;
S_Y -> S_X [arrowhead="none"];
【讨论】: