Horizontal zooming on faceted scatter plots does not scale y axes correctly
未关闭
还没有人认领这个 Issue。
bug
P3
- 主要语言
- Python
- 星标
- 18.8k
- 派生
- 2.8k
- 平均合并
- 16 小时 26 分钟
- 30 天内合并 PR
- 21
描述
The code below produces two plots side by side. Zooming in on the x axis only, using a horizontal motion of the mouse, results in the two y axes being independently rescaled. Zooming using a rectangle or on the y axis works as expected. The error does not appear when using fewer than 501 points.
I'm using Python 3.7.4 and Plotly 4.9.0 on Windows 10.
Example:
import plotly.express as px
import numpy as np
import pandas as pd
size=501
df = pd.DataFrame({'x': np.random.random(size=2*size),
'y': np.hstack((np.random.normal(loc=10, scale=2, size=size),
np.random.normal(loc=100, scale=2, size=size))),
'c': np.hstack((np.zeros(shape=size), np.ones(shape=size)))})
fig = px.scatter(data_frame=df, x='x', y='y', facet_col='c')
fig.show()
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
使用提供的 Python 复现代码运行包含 501 个点的分面散点图,然后比较鼠标水平缩放与矩形缩放和 y 轴缩放。完成标准是:即使数据集包含 501 个或更多点,水平缩放也能保持两个 y 轴的缩放比例一致。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- numpy, pandas, python
- 领域
- data-visualization
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100