Dynamic list of unsupported geoms
未關閉
還沒有人認領這個 Issue。
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 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
重新執行 issue 中的 R 程式碼片段,並檢查其中提到的 to_basic 和 geom2trace 方法清單。與維護者確認目標是支援列出的四個 geom,還是動態回報不受支援的 geom。完成條件應是行為已達成共識,且列出的 geom 依預期受到處理或回報。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- r
- 領域
- data-visualization
- Issue 類型
- 功能
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 25/100