Dynamic list of unsupported geoms
オープン
まだ誰も着手していません。
enhancement
ggplotly
- 主要言語
- R
- スター
- 2.7k
- フォーク
- 641
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
Here's a list of official ggplot2 geoms that we don't currently support. For a list of 3rd party geoms, see #566
library(plotly)
# obtain ggplot2's geoms
gg <- ls(asNamespace("ggplot2"))
geoms <- gg[grepl("^Geom", gg)]
# plotly geoms
x <- sub("to_basic\\.", "", as.character(methods(to_basic)))
y <- sub("geom2trace\\.", "", as.character(methods(geom2trace)))
# non official mechanism for layout-specific geoms yet
pgeoms <- c(x, y, "GeomRasterAnn")
setdiff(geoms, pgeoms)
"GeomCurve" "GeomCustomAnn" "GeomLabel" "GeomLogticks"
packageVersion("plotly")
[1] ‘4.5.6.9000’
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
issue 内の R スニペットを再実行し、そこで名前が挙げられている to_basic と geom2trace のメソッドリストを調べてください。目的が、一覧にある 4 つの geoms のサポートなのか、サポートされていない geoms の動的なレポートなのかを、maintainers に確認してください。完了条件は、合意された動作になっており、一覧にある geoms が意図どおりに処理または報告されることです。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- r
- 領域
- data-visualization
- issue の種類
- 機能追加
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 25/100