Hello Stata users,
I would be grateful for any assistance.
I employed the following syntax to generate a Sankey plot.
Then I get this graph:

The percentage of each option on the right is shown on the same/common scale as on the left. Therefore, they appear so small that it is difficult to identify and compare the lobes on the right side relative to each other. I need your help so that the shares on the right side are shown in a separate scale.
Your guidance on resolving these issues is highly appreciated.
Best regards,
Dastan
I would be grateful for any assistance.
I employed the following syntax to generate a Sankey plot.
Code:
sankey x if shock!="." & copem!=".", from(shock) to(copem) by(y) labposition(100) labangle(35) labc(black) labsize(3) boxw(5) valsize(1) ctitles("{stSerif:{bf:HH affected by:}}" "{stSerif:{bf:Coped with shock by:}}") ctpos(top) ctg(10) cts(3) smooth(7) sort1(name) format(%12.0f) recenter(mid) labscale(0.2) labprop percent valscale(0.5) valprop
The percentage of each option on the right is shown on the same/common scale as on the left. Therefore, they appear so small that it is difficult to identify and compare the lobes on the right side relative to each other. I need your help so that the shares on the right side are shown in a separate scale.
Your guidance on resolving these issues is highly appreciated.
Best regards,
Dastan
Comment