I have a simple graphviz
network graph where I want to show the neural network architecture of my model:
DiagrammeR::grViz("digraph G {
rankdir = LR
{a b z} -> {x1, x2, x100} -> Y
}")
which outputs to:
Now, I want to add 3 dots (vertically) after b
in the first layer and after x2
in the second layer, indicating that there are more nodes in these layers than I can show in a presentation. For example, there is 100 nodes (units) in the second layer (x1
, x2
...
x100
).
What I want is similar to the 3 dots in this example (taken from this study/source):