gpt4 book ai didi

Python Plotly Sankey 图未显示

转载 作者:行者123 更新时间:2023-12-01 09:20:02 26 4
gpt4 key购买 nike

想知道是否有人可以帮忙找出为什么这个桑基图不起作用。我很确定我遵循了正确的语法和约定来使用该模块。因为这个我一直用头撞 table 。

import plotly.offline

data_trace = {'domain': {'x': [0, 1], 'y': [0, 1]},
'height': 772,
'link': {'label': ['EM', 'GWF9C51E', 'GWF9C511', 'GWF9C51E Sensor Set',
'GWF9C511 Sensor Set'],
'source': [0, 1, 3, 1, 4, 2, 0, 2],
'target': [1, 3, 1, 0, 2, 0, 2, 4],
'value': [40, 76, 29, 86, 30, 75, 41, 65]},
'node': {'color': ['blue', 'yellow', 'yellow', 'green', 'green'],
'label': ['EM', 'GWF9C51E', 'GWF9C511', 'GWF9C51E Sensor Set',
'GWF9C511 Sensor Set'],
'line': {'color': 'black', 'width': 0.5},
'pad': 15,
'thickness': 15},
'orientation': 'h',
'type': 'sankey',
'valueformat': '.3s',
'valuesuffix': 'pkts',
'width': 1118}
layout = dict(
title = "Testing Sankey",
font = dict(
size = 10
)

fig = dict(data=[data_trace], layout=layout)
plotly.offline.plot(fig, validate=False)

最佳答案

问题是这样的:

         'source': [1, 3],
'target': [3, 1]

不能让源和目标扮演双重角色,即:节点 1 既是源又是目标。

根据您的用例,您可能必须将其拆分。

对于我来说,这是一个网络产品,因此我将节点分为“RX”和“TX”,这样我就不会加倍源/目标数据列表。

关于Python Plotly Sankey 图未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50869718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com