Opacity in Grouped Bar Charts with data.frame
未关闭
还没有人认领这个 Issue。
bug
priority: high
- 主要语言
- R
- 星标
- 2.7k
- 派生
- 641
- PR 合并指标
- 30 天内没有已合并 PR
描述
When plotting a grouped bar chart with variable opacity with data in a data.frame, the opacity assigned to each column is not the one specified in the data.frame. In the example below, the 2 bars in group "A" are plotted with reduced opacity, as opposed to the 2 bars with colour "C". Strangely, if the data.frame is not ordered then it plots correctly.
library( plotly )
data = data.frame(
x = c( "A", "B", "A", "B" ),
y = c( 1, 2, 3, 4 ),
z = c( "C", "C", "D", "D" ),
opacity = c( 0.3, 0.3, 1, 1 )
)
# removing this lines the plot is correct
data = data[ order( data$x ),]
p = plot_ly(
data = data,
x = ~x,
y = ~y,
color = ~z,
marker = list( opacity = ~opacity ),
type = "bar" ) %>%
layout( barmode = "group" )
show( p )
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先,在 plotly.R 中运行提供的 R 复现代码,分别使用有序和无序的数据框。跟踪分组柱状图对 marker opacity 的处理,并将每个柱的 opacity 与数据框中的值进行比较。当对数据进行排序不再改变哪些柱会获得降低的 opacity 时,即表示完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- r
- 领域
- data-visualization
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100