Do you know how to add an edge on edge in a DiagrammeR graph? For example, I want to show a moderating variable that moderates the connection between two nodes, how do I do this? I couldn't find it in the documentation.
`
grViz("
digraph boxes_and_circles {
graph [rankdir = RR]
node [shape = rectangle]
'საპროტესტო აქციები' [color = firebrick, penwidth = 2]
'საპროტესტო აქციები' [width = 0.1]
რეგულაციები -> 'საპროტესტო აქციები'
#კოვიდის ქეისების რაოდენობა საპროტესტო აქციებს ზრდის რეგულაციების გაშუალებით
'COVID-19' -> რეგულაციები -> მობილობა -> 'საპროტესტო აქციები'
}
")`
In the end, I aim to create this diagram in DiagrammeR: