Home > Software engineering >  What is this type of graph called and how can it be plotted in R
What is this type of graph called and how can it be plotted in R

Time:09-15

Transference among nodes

A graph to indicate the percentage of elements from one node that are transferred to another node in two different stages. In principle, the number of nodes in one stage need not be equal to the number of nodes in the next stage. I would like to know the name of this type of graph and if it is possible to create it in R.

CodePudding user response:

This is sankey diagram:

https://r-graph-gallery.com/sankey-diagram.html

You could find more info how to do it here:

https://plotly.com/r/sankey-diagram/

  • Related