Sankey Plot Node Positions are incorrect
未关闭
还没有人认领这个 Issue。
bug
P3
- 主要语言
- Python
- 星标
- 18.8k
- 派生
- 2.8k
- 平均合并
- 16 小时 26 分钟
- 30 天内合并 PR
- 21
描述
Describe your context
- replace the result of
pip list | grep dashbelow
dash 1.5.1
dash-core-components 1.4.0
dash-html-components 1.0.1
dash-renderer 1.2.0
dash-table 4.5.0
Describe the bug
Want to position Nodes along X-Axis in a Sankey Plot and Y to be automatically Adjusted. When I define X Positions only Sankey doesn't align the Nodes. But If I define Y Positions then only Sankey aligns the Nodes.
def create_sankey_plot(self, source_r, target_r, value_r, colors_r,
labels_r, labels_a, colors_a):
return go.Sankey(
node=dict(
pad=15,
thickness=20,
line=dict(color="black", width=0.5),
label=labels_a,
color=colors_a,
x=[0.2, 0.1, 0.5, 0.7, 0.3, 0.5]
),
link=dict(
source=source_r,
target=target_r,
value=value_r,
color=colors_r,
line={'width': 1},
label=labels_r
)
)
Above code will not align Nodes. Below code works:
def create_sankey_plot(self, source_r, target_r, value_r, colors_r,
labels_r, labels_a, colors_a):
return go.Sankey(
node=dict(
pad=15,
thickness=20,
line=dict(color="black", width=0.5),
label=labels_a,
color=colors_a,
x=[0.2, 0.1, 0.5, 0.7, 0.3, 0.5],
y=[0.3, 0.3, 0.3, 0.3, 0.3, 0.3],
),
link=dict(
source=source_r,
target=target_r,
value=value_r,
color=colors_r,
line={'width': 1},
label=labels_r
)
)
Expected behavior
Align Nodes if provided only X values / Y values making other default.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先仅使用 node.x 值复现报告的 go.Sankey 案例,然后将其与同时提供 node.y 值的示例进行比较。调查 Python API 暴露的 Sankey 节点位置处理方式,并验证仅提供一个坐标时节点仍会对齐,而另一个坐标会自动调整。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- data-visualization
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100