要使用Plotly的Sankey類,需要首先安裝Plotly庫。你可以使用以下命令安裝Plotly庫:
pip install plotly
接下來,可以使用以下代碼示例創建一個Sankey圖:
import plotly.graph_objects as go
fig = go.Figure(data=[go.Sankey(
node=dict(
pad=15,
thickness=20,
line=dict(color="black", width=0.5),
label=["A", "B", "C", "D", "E"],
color="blue"
),
link=dict(
source=[0, 1, 2, 2, 3],
target=[2, 3, 4, 5, 4],
value=[8, 4, 2, 8, 4]
)
)])
fig.show()
上面的代碼創建一個簡單的Sankey圖,其中包含5個節點和5條連接線。您可以根據需要調整節點和連接線的屬性來定制Sankey圖。最后,使用fig.show()
方法顯示Sankey圖。