PlantUML:因果関係図
因果関係図
(
causal diagram
)
PlantUML:ロジックツリー
https://plantuml-proxy.vercel.app/svg/https://scrapbox.io/api/code/suto3/PlantUML:因果関係図/cd.pu#.svg
code:cd.pu
@startdot
digraph G {
label="因果関係図のテンプレート";
node
fontsize = 12, shape = box, style=rounded
;
T
label = "メインテーマ", shape=oval
;
T -> ノードA
label = エッジ1
;
T -> ノードB
label = エッジ2
;
T -> ノードC
label = エッジ3
;
T -> ノードD
label = エッジ4
;
T -> ノードE
label = エッジ5
;
ノードA -> ノードB;
ノードB -> ノードC;
ノードC -> ノードD;
ノードD -> ノードA
label = ループ
;
ノードB -> ノードE;
ノードC -> ノードE;
}
@enddot
#PlantUMLの使い方