Join two similiar node name in cluster

How to join two clusters have same elements inside them.
Suggest alternative way to do.
Attached the picture

Please provide your input file. I am not sure what β€œjoin” means in this situation.

Sir,
I want to say to connect cluster_1 β€œB2” to cluster_2 β€œB3” likewise

Please provide your input file.

Does this help?

digraph n2n{
  rankdir=LR  // optional
  node[shape=plaintext]  //  plain might work better?
  subgraph cluster_1{
   n1[label=B1]
   n2[label=B2]
   n3[label=B3]
  }

  subgraph cluster_2{
   X1[label=B1]
   X2[label=B2]
[nodeToNode1.dot|attachment](upload://yfXCLCMHzXENNPU2hfh1S8uSuvs.dot) (807 Bytes)

   X3[label=B3]
  }
 n1 -> X1
 n2 -> X2
 X3 -> n3
}

Giving:
nodeToNode1

1 Like

Yes sir it will work.

One more question how to add the above code in my HTML page