Hello experts,
I am currently trying to create a flowchart using 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
+ }
+ }
+ ")
Please refer to the link File to see what it currently generates (Tab-Sheet1). I was wondering if there is a way to achieve the desired output (Tab-Desired Output).
Thank you in advance.