Add an edge on edge in DiagrammeR package

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:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.