我目前正在尝试使用 DiagrammeR 创建流程图
library(DiagrammeR)
grViz("
digraph g {
subgraph cluster_0 {
style=filled;
color=lightgrey;
label= To_Accrue
node [shape = rectangle, style = filled, fillcolor = Linen]
A
B
C
A->B->C
}
subgraph cluster_1 {
style=filled;
color=crimson;
label= Y
node [style=filled,color=blue, shape=folder]
1
2
3
1->2->3
}
}
")
请参阅链接文件以查看它当前生成的内容(Tab-Sheet1)。我想知道是否有办法实现所需的输出(Tab-Desired Output)。
先感谢您。