Skip to content

Instantly share code, notes, and snippets.

View abdrahym's full-sized avatar

abdrahym abdrahym

  • 10:18 (UTC +08:00)
View GitHub Profile
@abdrahym
abdrahym / SankeyDiagramPython.py
Last active April 3, 2025 07:11
Sankey Diagram in Python
# 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]