plotly / plotly/plotly.py

Some points not included in range of axes of 3D Axes in Python

未关闭
#3,537 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

bug P3
主要语言
Python
星标
18.8k
派生
2.8k
平均合并
16 小时 26 分钟
30 天内合并 PR
21

描述

Plotly version:

# ubuntu20.04LTS
plotly==5.5.0

when run:

import numpy as np
import plotly.graph_objects as go

x = np.array([2, 0, 2, 4], dtype=np.float64)
y = np.array([2, 0, 2, 0], dtype=np.float64)
z = np.array([4, 0, 0, 0], dtype=np.float64)
fig = go.Figure(data=[go.Mesh3d(x=x, y=y, z=z, opacity=0.5)])

fig.show()

Why not contain (2, 2, 0) in the graph?

image

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

调研方向

首先使用 Python、NumPy 和 Plotly 5.5.0 运行提供的 Mesh3d 复现代码,以确认为什么 (2, 2, 0) 位于所显示的 3D 轴范围之外。跟踪 Mesh3d 的轴范围处理,然后验证所有提供的点都包含在图表中。

由索引模型根据 Issue 内容生成。

评估

技术栈
numpy, python
领域
data-visualization
Issue 类型
缺陷
难度
3/5
预计耗时
1-2 天
活跃度
停滞
描述清晰度
基本清楚
新手友好度
35/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。