Skip to content

Commit bd9d849

Browse files
Update sankey-diagram.md (#2291)
* Update sankey-diagram.md Add colorful links to the Sankey diagram. * 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]> * Change paragraph title to 'More complex Sankey diagram with colored links' Co-authored-by: Emmanuelle Gouillart <[email protected]>
1 parent 1947798 commit bd9d849

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

doc/python/sankey-diagram.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,23 @@ fig.update_layout(title_text="Basic Sankey Diagram", font_size=10)
6262
fig.show()
6363
```
6464

65-
### More complex Sankey diagram
65+
### More complex Sankey diagram with colored links
6666

67-
```python inputHidden=false outputHidden=false
67+
```python
6868
import plotly.graph_objects as go
6969
import urllib, json
7070

7171
url = 'https://raw.githubusercontent.com/plotly/plotly.js/master/test/image/mocks/sankey_energy.json'
7272
response = urllib.request.urlopen(url)
7373
data = json.loads(response.read())
74+
75+
# override gray link colors with 'source' colors
76+
opacity = 0.4
77+
# change 'magenta' to its 'rgba' value to add opacity
78+
data['data'][0]['node']['color'] = ['rgba(255,0,255, 0.8)' if color == "magenta" else color for color in data['data'][0]['node']['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']]
81+
7482
fig = go.Figure(data=[go.Sankey(
7583
valueformat = ".0f",
7684
valuesuffix = "TWh",
@@ -87,8 +95,9 @@ fig = go.Figure(data=[go.Sankey(
8795
source = data['data'][0]['link']['source'],
8896
target = data['data'][0]['link']['target'],
8997
value = data['data'][0]['link']['value'],
90-
label = data['data'][0]['link']['label']
91-
))])
98+
label = data['data'][0]['link']['label'],
99+
color = data['data'][0]['link']['color']
100+
))])
92101

93102
fig.update_layout(title_text="Energy forecast for 2050<br>Source: Department of Energy & Climate Change, Tom Counsell via <a href='https://bost.ocks.org/mike/sankey/'>Mike Bostock</a>",
94103
font_size=10)

0 commit comments

Comments
 (0)