Skip to content

Commit aa79608

Browse files
Apply suggestions from code review
More complex Sankey diagram with colored links - setting the link color in one line, add the comment why 'magenta' is changed to its rgba value. Co-Authored-By: Emmanuelle Gouillart <[email protected]>
1 parent 7cc8fba commit aa79608

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

doc/python/sankey-diagram.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,10 @@ data = json.loads(response.read())
7474

7575
# override gray link colors with 'source' colors
7676
opacity = 0.4
77+
# change 'magenta' to its 'rgba' value to add opacity
7778
data['data'][0]['node']['color'] = ['rgba(255,0,255, 0.8)' if color == "magenta" else color for color in data['data'][0]['node']['color']]
78-
data['data'][0]['link']['color'] = [data['data'][0]['node']['color'][src] for src in data['data'][0]['link']['source']]
79-
data['data'][0]['link']['color'] = [color.replace("0.8", str(opacity)) for color in data['data'][0]['link']['color']]
79+
data['data'][0]['link']['color'] = [data['data'][0]['node']['color'][src].replace("0.8", str(opacity))
80+
for src in data['data'][0]['link']['source']]
8081

8182
fig = go.Figure(data=[go.Sankey(
8283
valueformat = ".0f",

0 commit comments

Comments
 (0)