ggplotly does not respect the `width` of tiles, fills the "no data" range instead
まだ誰も着手していません。
- 主要言語
- R
- スター
- 2.7k
- フォーク
- 641
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
ggplotly does not respect the width value used for tiles. In the examples, the tiles should have a constant width, but converting the visualisation with ggplotly() results in a different visualisation, in which the areas with no data associated are "filled in" by the bordering tiles. It looks like the tiles expand on both sides equally, just enough to fill the empty space.
Note that what is meant by "no data" here is different to "missing data": the x value has no corresponding row in the dataset.
library(ggplot2)
library(plotly)
# default tile width
(default_width <- ggplot(mapping = aes(x = c(1, 2, 4), y = 1, fill = 1:3)) +
geom_tile())

Convert to plotly:
ggplotly(default_width)

If one provides a custom width for the tiles, ggplotly() still ignores it:
# custom tile width
(custom_width <- ggplot(mapping = aes(x = c(1, 2, 4), y = 1, fill = 1:3)) +
geom_tile(width = .5))

Convert to plotly:
ggplotly(custom_width)

This does not happen if doing something similar with geom_col().
Using:
- R 4.1.0
- ggplot2 3.3.3
- plotly 4.9.3
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
ggplotly() と geom_tile() を使用した R の例で問題を再現し、デフォルト幅の場合とカスタム幅の場合を geom_col() の動作と比較します。ggplotly() によるタイル幅の変換を追跡し、行のない x 値のギャップが空のままになっていること、および geom_tile(width = .5) が尊重されていることを確認します。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- r
- 領域
- data-visualization
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100