geom_hline and geom_vline behave like a legend item when we apply filter
未关闭
还没有人认领这个 Issue。
ggplotly
- 主要语言
- R
- 星标
- 2.7k
- 派生
- 641
- PR 合并指标
- 30 天内没有已合并 PR
描述
When we double click on a legend item to isolate it, the geom_hline and geom_vline lines are also hidden. They behave as legend items.
Related to Issue/696 ?
library("ggplot2")
library("plotly")
df = read.table(text =
"id year value1 value2 value3
1 2000 1 2000 2001
1 2001 2 NA NA
1 2002 2 2000 NA
1 2003 2 NA 2003
2 2000 1 2001 2003
2 2002 2 NA 2000
2 2003 3 2002 NA
3 2002 2 2001 NA
", sep = "", header = TRUE)
df$value1 <- as.factor(df$value1)
p <- ggplot(df, aes(y=id)) +
geom_point(aes(x=year, color=value1), size=4) +
geom_point(aes(x=value3, colour ='value3'), size=3) +
geom_point(aes(x=value2, colour ='value2'), size=5) +
geom_hline(yintercept=0) + geom_vline(xintercept=0) +
scale_colour_manual(name="",
values = c("1"="yellow", "2"="orange", "3"="red",
"value3"="grey", "value2"="black"))
ply <- ggplotly(p)
ply
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先使用 ggplot2、plotly 和 ggplotly 运行提供的 R 复现代码,然后检查通过双击图例项进行隔离会如何影响 geom_hline 和 geom_vline 图层。当隔离某个图例项时这些参考线仍保持可见,同时绘制的数据仍会响应图例交互,即视为完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- r
- 领域
- data-visualization
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100