Last active
April 3, 2025 07:11
-
-
Save abdrahym/2f41b8f94714d9ef923c00d357f99e88 to your computer and use it in GitHub Desktop.
Sankey Diagram in Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sankey Diagram in Python | |
import plotly.graph_objects as go | |
labels = ["Source A", "Source B", "Source C", "Taget X", "Taget Y", "Taget Z"] | |
source = [0,1,0,2,3,3,4] | |
target = [3,3,4,4,5,5,5] | |
values = [0,4,2,8,4,2,3] | |
fig = go.Figure(data=[go.Sankey( | |
node=dict( | |
pad=15, | |
thickness=20, | |
line=dict(color='black', width=0.5), | |
label=labels | |
), | |
link=dict( | |
source=source, | |
target=target, | |
value=values | |
) | |
)]) | |
fig.update_layout(title_text="Basic Sankey Diagram", font_size=10) | |
fig.show() |
Comments are disabled for this gist.