Sankey Diagram
Manufacturing Yield Flow
Production flow showing material progression through manufacturing stages with yield losses.
Output
Python
import matplotlib.pyplot as plt
import matplotlib.patches as mpatches
from matplotlib.path import Path
def draw_flow(ax, x0, y0, x1, y1, w0, w1, color, alpha=0.6):
cx = (x0 + x1) / 2
verts = [
(x0, y0 + w0/2), (cx, y0 + w0/2), (cx, y1 + w1/2), (x1, y1 + w1/2),
(x1, y1 - w1/2), (cx, y1 - w1/2), (cx, y0 - w0/2), (x0, y0 - w0/2),
(x0, y0 + w0/2)
]
codes = [Path.MOVETO] + [Path.CURVE4]*3 + [Path.LINETO] + [Path.CURVE4]*3 + [Path.CLOSEPOLY]
ax.add_patch(mpatches.PathPatch(Path(verts, codes), fc=color, alpha=alpha, ec='none'))
def draw_node(ax, x, y, w, h, color, label):
ax.add_patch(mpatches.FancyBboxPatch((x-w/2, y-h/2), w, h, boxstyle="round,pad=0.02",
fc=color, ec='white', lw=1.5))
ax.text(x, y, label, ha='center', va='center', fontsize=8, color='white', fontweight='bold')
fig, ax = plt.subplots(figsize=(14, 8), facecolor='#0a0a0f')
ax.set_facecolor('#0a0a0f')
s = 0.005
# Raw -> Processing
draw_flow(ax, 0.5, 5, 2.5, 5, 1000*s, 1000*s, '#4927F5', 0.7)
# Processing -> QC (good)
draw_flow(ax, 3.5, 5, 5.5, 5.5, 920*s, 920*s, '#27D3F5', 0.7)
# Processing -> Waste
draw_flow(ax, 3.5, 4.5, 5.5, 2, 80*s, 80*s, '#C82909', 0.7)
# QC -> Final
draw_flow(ax, 6.5, 5.5, 8.5, 6, 880*s, 880*s, '#6CF527', 0.7)
# QC -> Rework
draw_flow(ax, 6.5, 5, 8.5, 3, 40*s, 40*s, '#F5B027', 0.7)
# Nodes
draw_node(ax, 0, 5, 0.6, 1000*s*1.2, '#F5276C', 'Raw\n1000')
draw_node(ax, 3, 5, 0.6, 1000*s*1.2, '#4927F5', 'Process\n1000')
draw_node(ax, 6, 5.5, 0.6, 920*s*1.3, '#27D3F5', 'QC\n920')
draw_node(ax, 6, 2, 0.6, 80*s*3, '#C82909', 'Waste\n80')
draw_node(ax, 9, 6, 0.6, 880*s*1.3, '#6CF527', 'Final\n880')
draw_node(ax, 9, 3, 0.6, 40*s*4, '#F5B027', 'Rework\n40')
ax.set_title('Manufacturing Yield Flow Analysis', fontsize=16, color='white', fontweight='bold', pad=20)
ax.set_xlim(-1, 10)
ax.set_ylim(0, 9)
ax.axis('off')
plt.tight_layout()
plt.show()
Library
Matplotlib
Category
Part-to-Whole
More Sankey Diagram examples
☕