In DiagrammeR, how can I create an edge to a node but not from a node?
For each of the nodes in the below example, I'd like to have an incoming edge (representing the incoming 'error' from outside of the model), preferably with a label.
library(DiagrammeR)
grViz("
digraph boxes_and_circles {
graph [nodesep = 2]
a -> {b c}
b -> {a c}
c -> {a b}
}
")
(for some reason you need reputation points to post images, so I hope it makes sense without)